定位crash的问题
摘要:一般都要符号化crash日志,但是低内存奔溃却没有堆栈日志 A Low Memory report differs from other crash reports in that there are no backtraces in this type of report. When a low
阅读全文
iOS 点击返回键崩溃的未解之谜
摘要:1. iOS8出现。 2.点击进去下一层View,然后返回,再返回上一级的视图的时候奔溃。 3.只有点击进去一下层View的时候才出现。 4. 报错的是给一个未知对象发送这个消息 gestureRecognizer:shouldBeRequiredToFailByGestureRecognizer:
阅读全文
JSPatch解析
摘要:1 defineClass('JPViewController', { 2 handleBtn: function(sender) { 3 var tableViewCtrl = JPTableViewController.alloc().init() 4 self.navigationController().pushViewController_animated...
阅读全文
componentsSeparatedByString 的注意事项
摘要:componentsSeparatedByString 两种情景 1. 没有分割符也生成一个数组,元素就是整个字符串本身,那你就需要判断“”这种字符串。 2. 分割的元素如果是相同的字符串,指向的是同一个对象。
阅读全文
内存管理
摘要:http://www.iteye.com/news/32364
阅读全文
ios9 适配的坑
摘要:http://www.cocoachina.com/ios/20151016/13715.html
阅读全文
JSPatch打补丁
摘要:http://www.cnblogs.com/dsxniubility/p/5080875.html http://www.jianshu.com/p/0cb81bf23d7a
阅读全文
h5 与app交互
摘要:http://www.jianshu.com/p/7151987f012d
阅读全文
xcode调整debug,release模式
摘要:今天调试的时候发现变量都不能查看了。在「lldb」中通过「po」命令来查看总是提示变量未找到。 环境 xcode 7, Swift 2 错误提示 ‘XXXX’ was compiled with optimization - stepping may behave oddly; variables
阅读全文
测试内容url
摘要:nscurl --ats-diagnostics https://xxxx/xxxx/main/ curl "https://app.api.gupiaoxianji.com/v3.8/main/"
阅读全文
如果空间不够的话,iOS发生这样的错误
摘要:2016-12-16 10:24:50.945 gpxj[2634:21323] Simulator user has requested new graphics quality: 10 2016-12-16 10:24:51.053 gpxj[2634:21323] JPush Log JPus
阅读全文
NSTimer 不能释放
摘要:http://www.jianshu.com/p/2287344894ae
阅读全文
iOS10 app连接不上网络的问题
摘要:http://jingyan.baidu.com/article/29697b917f2069ab20de3c33.html
阅读全文
导入charts开源库到工程里面
摘要:http://blog.csdn.net/zww1984774346/article/details/50608338 http://blog.csdn.net/zww1984774346/article/details/50506502 http://jingyan.baidu.com/artic
阅读全文
itunes connect
摘要:https://developer.apple.com/library/content/documentation/LanguagesUtilities/Conceptual/iTunesConnect_Guide/Chapters/TransferringAndDeletingApps.html
阅读全文
ATS连接 https
摘要:HTTPS协议是Http Over SSL,简单来说就是HTTP的安全版本,在HTTP的基础上增加SSL/TLS加密传输协议,通过HTTPS加密传输和身份认证保证了传输过程的安全性。在登录网银和电子邮箱时,你会常常看到地址栏的网址显示HTTPS前缀,从而轻松判断这个网页是否采用了HTTPS加密连接。
阅读全文
instruments 教程
摘要:https://www.raywenderlich.com/97886/instruments-tutorial-with-swift-getting-started
阅读全文
ARC 没有自动释放内存
摘要:http://www.cnblogs.com/qingche/p/4569833.html 定位了好几天,才发现是打印日志没有即时释放内存,使用intrustment
阅读全文
打包苦逼活
摘要:http://stackoverflow.com/questions/5714372/how-to-empty-caches-and-clean-all-targets-xcode-4 Clean BuildReset SimulatorRestart XcodeDelete your Derive
阅读全文
启动页面
摘要:iOS Human Interface Guidelines: Launch Files - Apple Developer https://developer.apple.com/library/ios/documentation/.../LaunchImages.html Every app m
阅读全文