• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
KerryJava
博客园 | 首页 | 新随笔 | 新文章 | 联系 | 订阅 订阅 | 管理

随笔分类 -  iOS

1 2 3 下一页

iOS 开发
 
定位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 阅读全文
posted @ 2018-02-12 18:28 KerryJava 阅读(840) 评论(0) 推荐(0)
iOS 点击返回键崩溃的未解之谜
摘要:1. iOS8出现。 2.点击进去下一层View,然后返回,再返回上一级的视图的时候奔溃。 3.只有点击进去一下层View的时候才出现。 4. 报错的是给一个未知对象发送这个消息 gestureRecognizer:shouldBeRequiredToFailByGestureRecognizer: 阅读全文
posted @ 2017-08-30 15:25 KerryJava 阅读(383) 评论(0) 推荐(0)
JSPatch解析
摘要:1 defineClass('JPViewController', { 2 handleBtn: function(sender) { 3 var tableViewCtrl = JPTableViewController.alloc().init() 4 self.navigationController().pushViewController_animated... 阅读全文
posted @ 2017-07-23 14:29 KerryJava 阅读(279) 评论(0) 推荐(0)
componentsSeparatedByString 的注意事项
摘要:componentsSeparatedByString 两种情景 1. 没有分割符也生成一个数组,元素就是整个字符串本身,那你就需要判断“”这种字符串。 2. 分割的元素如果是相同的字符串,指向的是同一个对象。 阅读全文
posted @ 2017-06-08 10:20 KerryJava 阅读(640) 评论(0) 推荐(0)
内存管理
摘要:http://www.iteye.com/news/32364 阅读全文
posted @ 2017-06-01 17:36 KerryJava 阅读(180) 评论(0) 推荐(0)
ios9 适配的坑
摘要:http://www.cocoachina.com/ios/20151016/13715.html 阅读全文
posted @ 2017-01-17 11:13 KerryJava 阅读(165) 评论(0) 推荐(0)
JSPatch打补丁
摘要:http://www.cnblogs.com/dsxniubility/p/5080875.html http://www.jianshu.com/p/0cb81bf23d7a 阅读全文
posted @ 2017-01-05 19:08 KerryJava 阅读(324) 评论(0) 推荐(0)
h5 与app交互
摘要:http://www.jianshu.com/p/7151987f012d 阅读全文
posted @ 2016-12-22 22:08 KerryJava 阅读(476) 评论(0) 推荐(0)
xcode调整debug,release模式
摘要:今天调试的时候发现变量都不能查看了。在「lldb」中通过「po」命令来查看总是提示变量未找到。 环境 xcode 7, Swift 2 错误提示 ‘XXXX’ was compiled with optimization - stepping may behave oddly; variables 阅读全文
posted @ 2016-12-22 09:22 KerryJava 阅读(326) 评论(0) 推荐(0)
测试内容url
摘要:nscurl --ats-diagnostics https://xxxx/xxxx/main/ curl "https://app.api.gupiaoxianji.com/v3.8/main/" 阅读全文
posted @ 2016-12-19 18:16 KerryJava 阅读(197) 评论(0) 推荐(0)
如果空间不够的话,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 阅读全文
posted @ 2016-12-16 10:52 KerryJava 阅读(1572) 评论(0) 推荐(0)
NSTimer 不能释放
摘要:http://www.jianshu.com/p/2287344894ae 阅读全文
posted @ 2016-12-08 09:46 KerryJava 阅读(160) 评论(0) 推荐(0)
iOS10 app连接不上网络的问题
摘要:http://jingyan.baidu.com/article/29697b917f2069ab20de3c33.html 阅读全文
posted @ 2016-11-29 10:21 KerryJava 阅读(383) 评论(0) 推荐(0)
导入charts开源库到工程里面
摘要:http://blog.csdn.net/zww1984774346/article/details/50608338 http://blog.csdn.net/zww1984774346/article/details/50506502 http://jingyan.baidu.com/artic 阅读全文
posted @ 2016-11-17 13:20 KerryJava 阅读(188) 评论(0) 推荐(0)
itunes connect
摘要:https://developer.apple.com/library/content/documentation/LanguagesUtilities/Conceptual/iTunesConnect_Guide/Chapters/TransferringAndDeletingApps.html 阅读全文
posted @ 2016-11-17 10:15 KerryJava 阅读(334) 评论(0) 推荐(0)
ATS连接 https
摘要:HTTPS协议是Http Over SSL,简单来说就是HTTP的安全版本,在HTTP的基础上增加SSL/TLS加密传输协议,通过HTTPS加密传输和身份认证保证了传输过程的安全性。在登录网银和电子邮箱时,你会常常看到地址栏的网址显示HTTPS前缀,从而轻松判断这个网页是否采用了HTTPS加密连接。 阅读全文
posted @ 2016-11-01 14:32 KerryJava 阅读(940) 评论(0) 推荐(0)
instruments 教程
摘要:https://www.raywenderlich.com/97886/instruments-tutorial-with-swift-getting-started 阅读全文
posted @ 2016-10-23 22:01 KerryJava 阅读(281) 评论(0) 推荐(0)
ARC 没有自动释放内存
摘要:http://www.cnblogs.com/qingche/p/4569833.html 定位了好几天,才发现是打印日志没有即时释放内存,使用intrustment 阅读全文
posted @ 2016-10-23 21:54 KerryJava 阅读(235) 评论(0) 推荐(0)
打包苦逼活
摘要:http://stackoverflow.com/questions/5714372/how-to-empty-caches-and-clean-all-targets-xcode-4 Clean BuildReset SimulatorRestart XcodeDelete your Derive 阅读全文
posted @ 2016-09-28 01:02 KerryJava 阅读(277) 评论(0) 推荐(0)
启动页面
摘要:iOS Human Interface Guidelines: Launch Files - Apple Developer https://developer.apple.com/library/ios/documentation/.../LaunchImages.html Every app m 阅读全文
posted @ 2016-06-16 23:01 KerryJava 阅读(199) 评论(0) 推荐(0)
 

1 2 3 下一页

公告


博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3