Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liyingxuan/onto
ONTO
https://github.com/liyingxuan/onto
Last synced: 4 days ago
JSON representation
ONTO
- Host: GitHub
- URL: https://github.com/liyingxuan/onto
- Owner: liyingxuan
- Created: 2020-10-13T12:17:18.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-13T13:09:43.000Z (about 4 years ago)
- Last Synced: 2024-11-09T19:12:55.472Z (2 months ago)
- Language: JavaScript
- Size: 4.8 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# onto-ios
### 开发切换至dev分支
```bash
cd ~/OnChain
git checkout dev
pod install //下载第三方库
```
### 开发时注意事项
1. Viewcontroller全部继承BaseViewcontroller,VC尽量不要使用xib创建,自定义view随便
2. 公共的自定义View写在Onchain/Common/目录下
3. 网络请求的接口写在OnChain/Api.h文件中,具体方法请看CCRequest.h
4. 一些宏定义或者配置项写入OnChain/Config/Config.h文件中
5. 自定义的工具类写在OnChain/Utils中
6. 切换rootVC请参考ViewController.m文件的实现