Commit 2a8bc52a authored by 陈俊泳's avatar 陈俊泳

feat(更新):更新

parent 6290a367
No preview for this file type
...@@ -4,33 +4,40 @@ ...@@ -4,33 +4,40 @@
## 账号 ## 账号
- 禅道 [https://zentao.sycdev.com](https://zentao.sycdev.com)
- - chenjunyong
- vokfir-7hojja-xaDvuv
- coding - coding
- - junyong.chen@shengyc.com - - [junyong.chen@shengyc.com](mailto:junyong.chen@shengyc.com)
- - Shengyc_2022 - - Shengyc_2022
- 邮箱 - GitLab
- junyong.chen@shengyc.com - - [junyong.chen@shengyc.com](mailto:junyong.chen@shengyc.com)
- Kangaroo
- SYC12345
- gitlab - 邮箱
- [junyong.chen@shengyc.com](mailto:junyong.chen@shengyc.com) - [junyong.chen@shengyc.com](mailto:junyong.chen@shengyc.com)
- syc123456 - Kangaroo
5566324415272839 02/23 084 5566324415272839 02/23 084
- [Appid](https://developer.apple.com/account/#/overview/C77C4Z7YUK) 「App打包密码:vwks-bbxa-onno-futv」 - [Appid](https://developer.apple.com/account/#/overview/C77C4Z7YUK) 「App打包密码:vwks-bbxa-onno-futv」
- 446467926@qq.com - 每年5月21号前续费
- [446467926@qq.com](mailto:446467926@qq.com)
- SHENGyc34583131 - SHENGyc34583131
- 张总:用于CMS - 张总:用于CMS
绑定手机号-17701929135「施婷」 绑定手机号-17701929135「施婷」
appid账号: saas@shengyc.com appid账号: [saas@shengyc.com](mailto:saas@shengyc.com) appid密码:Shengyc_1212
appid密码:Shengyc_2023
网易邮箱密码:syc888168 网易邮箱密码:syc888168
- 测试appid: - 测试appid:
...@@ -56,7 +63,7 @@ ...@@ -56,7 +63,7 @@
- TestFlight 公开链接 - TestFlight 公开链接
- https://testflight.apple.com/join/ZMkkPeuK - [TestFlight - Apple](https://testflight.apple.com/join/ZMkkPeuK)
- 盛云平台 - 盛云平台
...@@ -66,18 +73,20 @@ ...@@ -66,18 +73,20 @@
- 微信 - 微信
- 微信公众平台 - 微信公众平台 [2093181845@qq.com](mailto:2093181845@qq.com) Sy2019123
2093181845@qq.com
Sy2019123
微信开发平台 微信开发平台 [operation@shengyc.com](mailto:operation@shengyc.com) Sy2019123
operation@shengyc.com
Sy2019123
- 阿里云 - 阿里云
盛原成SYC 盛原成SYC
shengyc2@!9 shengyc2@!9
- (华为云IAM)[[https://auth.huaweicloud.com/authui/login.html?service=https://console.huaweicloud.com/console/#/login]](https://auth.huaweicloud.com/authui/login.html?service=https://console.huaweicloud.com/console/#/login%5D)
- - shengyc-2017
app_icon
syc2022
- 友盟 - 友盟
- 测试 - 测试
...@@ -86,8 +95,7 @@ ...@@ -86,8 +95,7 @@
- 正式 - 正式
- zhantian.su@shengyc.com - [zhantian.su@shengyc.com](mailto:zhantian.su@shengyc.com) Syc34583232
Syc34583232
- 百度SDK - 百度SDK
...@@ -116,39 +124,33 @@ ...@@ -116,39 +124,33 @@
## 代码基本要求 ## 代码基本要求
- 基本要求 - 基本要求
+ 成员属性基本格式:@property (nonatomic, copy) NSString *thumb;逗号前面没有空格,后面有空格 - 成员属性基本格式:@property (nonatomic, copy) NSString *thumb;逗号前面没有空格,后面有空格
+ 变量名,方法名之类命名尽量不缩写 - 变量名,方法名之类命名尽量不缩写
+ 方法的声明、实现: - (void)viewDidLoad { ,-/+号前空格,{ 前有空格,{和代码写在同一行; - 方法的声明、实现: - (void)viewDidLoad { ,-/+号前空格,{ 前有空格,{和代码写在同一行;
+ 关于遵守协议:@interface GBConversationViewController () \<UITableViewDataSource, UITableViewDelegate\>,逗号后面有空格 - 关于遵守协议:@interface GBConversationViewController () <UITableViewDataSource, UITableViewDelegate>,逗号后面有空格
<br>
- .m文件 - .m文件
+ \#MARK 标注顺序 - #MARK 标注顺序
* LifeCycle - LifeCycle
* DataSource,Delegate - DataSource,Delegate
* Event Response - Event Response
* 其它的一些Method(Public Method等等) - 其它的一些Method(Public Method等等)
* Property Method (所有的懒加载之类有关property的初始化) - Property Method (所有的懒加载之类有关property的初始化)
* NavigationBar Configuration ,导航栏颜色之类 - NavigationBar Configuration ,导航栏颜色之类
* Private Method() - Private Method()
* \#MARK 一般都是英文就可以了 - #MARK 一般都是英文就可以了
+ 在.m文件中非必要的话,不会在函数上注释,一般在h文件注释好就可以了。 - 在.m文件中非必要的话,不会在函数上注释,一般在h文件注释好就可以了。
+ \#important引用头文件基本顺序, - #important引用头文件基本顺序,
* Controller - Controller
* View - View
* ViewModel - ViewModel
* Request - Request
* Mgr - Mgr
一般有ViewModel的类不会直接引用Request 一般有ViewModel的类不会直接引用Request
「ViewModel的h会import使用到的数据源h文件」 「ViewModel的h会import使用到的数据源h文件」
Request的h文件里面会import对应model的h文件 Request的h文件里面会import对应model的h文件
<br>
-
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment