12345678910111213141516 |
- #import <UIKit/UIKit.h>
- @interface WFCUCreateGroupViewController : UIViewController
- @property(nonatomic, strong)NSMutableArray<NSString *> *memberIds;
- @property(nonatomic, assign)BOOL isModifyPortrait;
- @property(nonatomic, strong)NSString *groupId;
- @property(nonatomic, strong)void (^onSuccess)(NSString *groupId);
- @end
|