// // NIMTeamManagerDelegate.h // NIMSDK // // Created by Netease on 2019/7/19. // Copyright © 2019 Netease. All rights reserved. // #import @class NIMTeam; NS_ASSUME_NONNULL_BEGIN @protocol NIMTeamManagerDelegate @optional /** * 群组增加回调 * * @param team 添加的群组 */ - (void)onTeamAdded:(NIMTeam *)team; /** * 群组更新回调 * * @param team 更新的群组 */ - (void)onTeamUpdated:(NIMTeam *)team; /** * 群组移除回调 * * @param team 被移除的群组 */ - (void)onTeamRemoved:(NIMTeam *)team; /** * 群组成员变动回调,包括数量增减以及成员属性变动 * * @param team 变动的群组 */ - (void)onTeamMemberChanged:(NIMTeam *)team; @end NS_ASSUME_NONNULL_END