// // NTESCreateTeamAnnouncement.h // NIM // // Created by Xuhui on 15/3/31. // Copyright (c) 2015年 Netease. All rights reserved. // #import @protocol NTESCreateTeamAnnouncementDelegate - (void)createTeamAnnouncementCompleteWithTitle:(NSString *)title content:(NSString *)content; @end @interface NIMCreateTeamAnnouncement : UIViewController @property (nonatomic, weak) id delegate; @property (nonatomic, copy) NSString *defaultTitle; @property (nonatomic, copy) NSString *defaultContent; @end