Meeting SDK for iOS API Reference
Loading...
Searching...
No Matches
MobileRTCMeetingActionItem.h
Go to the documentation of this file.
1
6#import <Foundation/Foundation.h>
7
12
21@property (nonatomic, retain, readwrite) NSString * _Nullable actionTitle;
25@property (nonatomic, copy, readwrite) MobileRTCMeetingInviteActionItemBlock _Nullable actionHandler;
26
27+(id _Nonnull )itemWithTitle:(NSString * _Nullable )inTitle Action:(MobileRTCMeetingInviteActionItemBlock _Nullable )actionHandler;
28
29@end
30
35@protocol MobileRTCMeetingShareActionItemDelegate <NSObject>
36@required
37- (void)onShareItemClicked:(NSUInteger)tag completion:(BOOL(^_Nonnull)(UIViewController * _Nonnull shareView))completion;
38@end
39
48@property (nonatomic, retain, readwrite) NSString * _Nonnull actionTitle;
49
53@property (nonatomic, assign, readwrite) NSUInteger tag;
57@property (nonatomic, assign, readwrite) id<MobileRTCMeetingShareActionItemDelegate> _Nonnull delegate;
58
59+(id _Nonnull )itemWithTitle:(NSString * _Nonnull)inTitle Tag:(NSUInteger)tag;
60@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.