即时通讯-环信

来源:互联网 发布:淘宝网网址是什么 编辑:程序博客网 时间:2024/06/13 20:29

1.cocoapod导入库

  • cd /Users/kauriHealth/Desktop/hxdemo

  • pod init 修改Podfile文件,添加

    pod 'HyphenateLite'pod 'EaseUI', :git => 'https://github.com/easemob/easeui-ios-hyphenate-cocoapods.git'pod 'Realm'
  • pod install

2.AppDelegate.h

  • 注册的AppKey
    EMOptions *options = [EMOptions optionsWithAppkey:@"#######@*******"];    //    options.apnsCertName = @"testdemo";    [[EMClient sharedClient] initializeSDKWithOptions:options];
  • 登录环信系统
    [[EMClient sharedClient] loginWithUsername:@"" password:@"" completion:nil];

3.聊天界面

    HWDEaseMessageViewController *chatController = [[HWDEaseMessageViewController alloc] initWithConversationChatter:@"testtwo" conversationType:EMConversationTypeChat];    chatController.hidesBottomBarWhenPushed = YES;    [self.navigationController pushViewController:chatController animated:YES];

4. 聊天列表

 HWDEaseConversationListViewController * vc = [[HWDEaseConversationListViewController alloc] init];    [self.navigationController pushViewController:vc animated:YES];

5.远程仓库

create a new repository on the command line

echo "# hxdemo" >> README.mdgit initgit add README.mdgit commit -m "first commit"git remote add origin https://github.com/lvkklemo/hxdemo.gitgit push -u origin master
原创粉丝点击