Meeting SDK for iOS API Reference
Loading...
Searching...
No Matches
MobileRTCMeetingActionItem.h
Go to the documentation of this file.
1//
2// MobileRTCMeetingActionItem.h
3// MobileRTC
4//
5// Created by Zoom on 16/03/2018.
6// Copyright © Zoom Communications, Inc. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
15
24@property (nonatomic, retain, readwrite) NSString * _Nullable actionTitle;
28@property (nonatomic, copy, readwrite) MobileRTCMeetingInviteActionItemBlock _Nullable actionHandler;
29
30+(id _Nonnull )itemWithTitle:(NSString * _Nullable )inTitle Action:(MobileRTCMeetingInviteActionItemBlock _Nullable )actionHandler;
31
32@end
33
38@protocol MobileRTCMeetingShareActionItemDelegate <NSObject>
39@required
40- (void)onShareItemClicked:(NSUInteger)tag completion:(BOOL(^_Nonnull)(UIViewController * _Nonnull shareView))completion;
41@end
42
51@property (nonatomic, retain, readwrite) NSString * _Nonnull actionTitle;
52
56@property (nonatomic, assign, readwrite) NSUInteger tag;
60@property (nonatomic, assign, readwrite) id<MobileRTCMeetingShareActionItemDelegate> _Nonnull delegate;
61
62+(id _Nonnull )itemWithTitle:(NSString * _Nonnull)inTitle Tag:(NSUInteger)tag;
63@end
void(^ MobileRTCMeetingInviteActionItemBlock)(void)
Add custom invitation action items to the meeting.
Add custom invitation action items to the meeting.
MobileRTCMeetingInviteActionItemBlock _Nullable actionHandler
Callback event of clicking the invitation item.
NSString *_Nullable actionTitle
The title of the custom invitation items.
Add custom sharing action items to the meeting.