forked from iosre/WeChatRobotForExample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWCRGroupCommander.h
More file actions
28 lines (23 loc) · 999 Bytes
/
Copy pathWCRGroupCommander.h
File metadata and controls
28 lines (23 loc) · 999 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#import "../WeChatRobotForExample.h"
#import "WCRGeneralCommander.h"
@interface WCRGroupCommander : WCRGeneralCommander <UIWebViewDelegate>
@property (nonatomic, retain) UIWebView *webView;
+ (instancetype)sharedCommander;
- (void)acceptGroupInvitationFromURL:(NSString *)URLString;
- (void)webViewDidFinishLoad:(UIWebView *)webView;
- (NSArray *)allGroups;
- (NSString *)allGroupsDescription;
- (NSArray *)membersOfGroup:(NSString *)groupID;
- (NSUInteger)memberCountsOfGroup:(NSString *)groupID;
- (void)inviteUserToRandomGroup:(NSString *)userID;
- (void)inviteUserToAllGroups:(NSString *)userID;
- (void)inviteUser:(NSString *)userID toGroups:(NSArray *)groupIDs;
- (void)introduceGroup:(NSString *)groupID toUsers:(NSArray *)userIDs;
- (void)introduceGroupToAllUsers:(NSString *)groupID;
- (void)muteGroup:(NSString *)groupID;
- (void)muteAllGroups;
- (void)saveGroup:(NSString *)groupID;
- (void)saveAllGroups;
- (void)quitGroup:(NSString *)groupID;
- (void)inviteGodsonToAllGroups;
@end