你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
[已注销]
- (instancetype)initWithConversationChatter:(NSString *)conversationChatter conversationType:(EMConversationType)conversationType { if ([conversationChatter length] == 0) { return nil; } self = [super initWithStyle:UITableViewStylePlain]; if (self) { self.conversation = [[EMClient sharedClient].chatManager getConversation:conversationChatter type:conversationType createIfNotExist:YES]; self.messageCountOfPage = 10; self.timeCellHeight = 30; self.deleteConversationIfNull = YES; self.scrollToBottomWhenAppear = YES; self.messsagesSource = [NSMutableArray array]; self.delegate = self; self.dataSource = self; [self.conversation markAllMessagesAsRead]; } return self; }
要回复问题请先登录或注册
2 个回复
[已注销]
[已注销]
- (instancetype)initWithConversationChatter:(NSString *)conversationChatter conversationType:(EMConversationType)conversationType
{
if ([conversationChatter length] == 0) {
return nil;
}
self = [super initWithStyle:UITableViewStylePlain];
if (self) {
self.conversation = [[EMClient sharedClient].chatManager getConversation:conversationChatter type:conversationType createIfNotExist:YES];
self.messageCountOfPage = 10;
self.timeCellHeight = 30;
self.deleteConversationIfNull = YES;
self.scrollToBottomWhenAppear = YES;
self.messsagesSource = [NSMutableArray array];
self.delegate = self;
self.dataSource = self;
[self.conversation markAllMessagesAsRead];
}
return self;
}