你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
搜索问题、话题或人...
输入关键字进行搜索
搜索:
问题
精选文章
开源项目
视频教程
活动
· · ·
帮助
登录
注册
环信_iOS
集成环信如何显示未读消息?
没有找到相关结果
已邀请:
与内容相关的链接
提交
3 个回复
[已注销]
// 统计未读消息数
-(void)setupUnreadMessageCount
{
NSArray *conversations = [[[EaseMob sharedInstance] chatManager] conversations];
NSInteger unreadCount = 0;
for (EMConversation *conversation in conversations) {
unreadCount += conversation.unreadMessagesCount;
}
if (_chatListVC) {
if (unreadCount > 0) {
_chatListVC.tabBarItem.badgeValue = [NSString stringWithFormat:@"%i",(int)unreadCount];
}else{
_chatListVC.tabBarItem.badgeValue = nil;
}
}
UIApplication *application = [UIApplication sharedApplication];
[application setApplicationIconBadgeNumber:unreadCount];
}
zbf_1209
-
85后
我的Tabbarcontroller是用storyboard拖的
这种情况怎么搞
zbf_1209
-
85后
现在这个已经有了
就是tabbar item上没有 不显示
要回复问题请先
登录
或
注册
发起人
zbf_1209
85后
问题状态
最新活动:
2016-03-10 19:11
浏览:
4613
关注:
2
人
3 个回复
[已注销]
-(void)setupUnreadMessageCount
{
NSArray *conversations = [[[EaseMob sharedInstance] chatManager] conversations];
NSInteger unreadCount = 0;
for (EMConversation *conversation in conversations) {
unreadCount += conversation.unreadMessagesCount;
}
if (_chatListVC) {
if (unreadCount > 0) {
_chatListVC.tabBarItem.badgeValue = [NSString stringWithFormat:@"%i",(int)unreadCount];
}else{
_chatListVC.tabBarItem.badgeValue = nil;
}
}
UIApplication *application = [UIApplication sharedApplication];
[application setApplicationIconBadgeNumber:unreadCount];
}
zbf_1209 - 85后
这种情况怎么搞
zbf_1209 - 85后
就是tabbar item上没有 不显示