摘要:
一、结论 一个对象对外暴露的读写属性,如果这个属性在多个线程中访问,可能会出现crash。因此对外暴露的属性一定要考虑线程安全问题。 二、看下面的代码 #import "ViewController.h" #import <malloc/malloc.h> #import <objc/runtime 阅读全文
摘要:
flutter官网 https://flutterchina.club/setup-macos/ https://flutter.cn/docs/get-started/install/macos 1.新建一个文件夹 development 2.终端 cd ~/development 3.下载flu 阅读全文
摘要:
1.git地址 https://github.com/marcuswestin/WebViewJavascriptBridge 2.引入头文件 #import <WKWebViewJavascriptBridge.h> 3.写属性 @property (nonatomic,strong) WKWeb 阅读全文
摘要:
iPhone2G屏幕为3.5寸,分辨率为480*320像素,比例为3:2。1倍图。 iPhone3G屏幕为3.5寸,分辨率为480*320像素,比例为3:2。1倍图。 iPhone3GS屏幕为3.5寸,分辨率为480*320像素,比例为3:2。1倍图。 iPhone4屏幕为3.5寸,分辨率为960* 阅读全文
摘要:
bugly官方文档 https://bugly.qq.com/docs/user-guide/symbol-configuration-ios/?v=20200622202242 1.bugly手动上传符号表 查找符号表 Xcode -- Window -- Organizer -- 找到打包的那个 阅读全文
摘要:
1.将release包传到iTunes connect 2. 绿线是内部测试 A.需要添加测试员 B.最多25个测试员 C.提交到iTunes connect不需要等待审核,即可测试 红线是外部测试(需要点击加号新增此群组) A.不需要添加测试员 B.最多10000个测试员 C.提交到iTunes 阅读全文
摘要:
(目前用的个推+神策,程序最低兼容iOS10) 收到push时加埋点事件pushShow和点击push时加埋点事件pushClick需求,分四种情况 A.APP退到后台时,点击push B.APP运行时,点击push C.APP运行时,收到push D.APP退到后台时,收到push E.APP杀死 阅读全文
摘要:
看以下最新的文档 亲测可用 https://www.jianshu.com/p/531c959b8cf8 调试过程中常见的问题可以看下面文档的后面 https://www.jianshu.com/p/68a19f28c51a 别人如何访问Jenkins地址 https://blog.csdn.net 阅读全文
摘要:
第一种方式、自动安装homebrew /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 第二种方式、一步步设置安装源 在国内的网络环境下使用 Homebrew 安装软件的过程中 阅读全文
摘要:
1.按钮addTarget [[self.aDepositBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) { //点击处理 }] 阅读全文