7.11 Leave Group
[[BayunCore sharedInstance]leaveGroup: @"groupId" success:^{
NSLog(@"Group left successfully");
} failure:^(BayunError error) {
NSLog(@"Error leaving the group");
}];BayunCore.sharedInstance().leaveGroup("groupId", success: {
NSLog("Group left successfully")
}, failure: {(bayunErrorCode)in
NSLog("Error leaving the group")
})Last updated