-
Notifications
You must be signed in to change notification settings - Fork 124
iOS 运行指南
srs888001 edited this page May 9, 2020
·
4 revisions
Read this in another language: English
本文指导你运行 iOS 示例项目。
- 准备工作:请确保你已经完成 Agora e-Education 项目指南中的准备工作。
- 开发环境:
- Xcode 10.0 及以上
- Cocoapods
- iOS 真机(iPhone 或 iPad)
参考以下步骤编译和运行示例项目:
1.将代码克隆到本地
git clone https://github.com/AgoraIO-Usecase/eEducation
2.进入项目目录
cd eEducation/education_iOS
3.安装项目依赖库
pod install
4.打开项目
open AgoraEducation.xcworkspace
5.配置相关参数
在 KeyCenter.m
文件中配置以下参数:
- 你获取到的声网 App ID。
- 你生成的
Authorization
字段,用于 HTTP 基本认证。
详见 Agora e-Education 项目指南中的前提条件。
+ (NSString *)agoraAppid {
return <#Your Agora App Id#>;
}
+ (NSString *)authorization {
return <#Your Authorization#>;
}
6.通过 command + r
运行项目
- 如需阅读完整的文档和 API 注释,你可以访问声网开发者中心。
- 如果在集成中遇到问题,你可以到声网开发者社区提问。
- 如果有售前咨询问题,你可以拨打 400 632 6626,或加入官方Q群 12742516 提问。
- 如果需要售后技术支持,你可以在 Agora 控制台提交工单。
- 如果发现了示例代码的 bug,欢迎提交 issue。
The MIT License (MIT).