iOS SDK 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 chaobai on 16/03/2018.
6// Copyright © 2019 Zoom Video Communications, Inc. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
16
21@property (nonatomic, retain, readwrite) NSString * _Nonnull actionTitle;
25@property (nonatomic, copy, readwrite) MobileRTCMeetingInviteActionItemBlock _Nonnull actionHandler;
26
27+(id _Nonnull )itemWithTitle:(NSString * _Nonnull )inTitle Action:(MobileRTCMeetingInviteActionItemBlock _Nonnull )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
44@property (nonatomic, retain, readwrite) NSString * _Nonnull actionTitle;
45
49@property (nonatomic, assign, readwrite) NSUInteger tag;
53@property (nonatomic, assign, readwrite) id<MobileRTCMeetingShareActionItemDelegate> _Nonnull delegate;
54
55+(id _Nonnull )itemWithTitle:(NSString * _Nonnull)inTitle Tag:(NSUInteger)tag;
56@end
void(^ MobileRTCMeetingInviteActionItemBlock)(void)
Add custom invitation action items to the meeting.
MobileRTCMeetingInviteActionItemBlock _Nonnull actionHandler
Callback event of clicking the invitation item.
NSString *_Nonnull actionTitle
The title of the custom invitation items.
Add custom share action item to the meeting.