编译环境:Xcode-Version 7.2.1 (7C1002)
┌── API
│ ├── Common
│ │ ├── Config :全局配置
│ │ ├── Util :常用工具
│ │ ├── Category :扩展方法
│ ├── Yun2Win :SDK
│ ├── Model :SDK相关实体和方法
│ ├── APITests :单元测试
│ ├── Classes :Demo界面
│ │ ├── Login :登陆
│ │ ├── Setting :设置
│ │ ├── ConversationList :会话列表
│ │ ├── Conversation :会话
│ │ └── Contact :控制器,对应app中的各个页面
│ ├── Frameworks
│ │ ├── Y2W_RTC_SDK.framework :yun2win音视频SDK
│ │ └── Y2W_IM_SDK.framework :yun2win即时通讯SDK
└── Pods 依赖管理工具
直接把SDK拷贝到项目中,选择项目TARGETS,点击"Build Phases"选项,点击"+"号添加"Copy Files",点击"Copy Files"中"+"号选项添加SDK。
在需要使用Y2W_IM_SDK的代码中引用头文件。
`` #import <Y2W_IM_SDK/Y2W_IM_SDK.h>
``
官方网站 : http://www.yun2win.com
安卓 : https://github.com/yun2win/yun2win-sdk-android
iOS : https://github.com/yun2win/yun2win-sdk-iOS
Web : https://github.com/yun2win/yun2win-sdk-web
Server : https://github.com/yun2win/yun2win-sdk-server
liyueyun-SDK-iOS is available under the MIT license. See the LICENSE file for more info.