摘要: http://www.cnblogs.com/yashi88/p/3551947.html 参考文章 当使用某个第三方库时,遇到 出现"selector not recognized"问题。这与第三方库里使用了类别有关系。添加-ObjC标志,可以将所有类别加入编译器。 阅读全文
posted @ 2017-02-17 11:49 shycieSATINE 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 本文转载自http://www.jianshu.com/p/c6ca540861d9 关于Block内部要不要使用weakSelf的几种情况 我们知道当对block使用不当时会造成循环引用导致内存泄露,这里列出几种使用block到底会不会引起循环引用的例子,通过重写控制器dealloc,当控制器被p 阅读全文
posted @ 2016-12-07 18:51 shycieSATINE 阅读(214) 评论(0) 推荐(0) 编辑
摘要: url scheme 是什么? url ,就是一个链接或网址 scheme ,表示的是一个url中的一个位置,最初始的位置,即://前的名称。如http://www.apple.com 这个网址的scheme就是 http 在以本地应用为主的 iOS 上,我们可以像定位一个网页一样,用一种特殊的 U 阅读全文
posted @ 2016-11-25 16:45 shycieSATINE 阅读(949) 评论(0) 推荐(0) 编辑
摘要: http://blog.devtang.com/2015/11/14/charles-introduction/ Charles 从入门到精通 http://www.infoq.com/cn/articles/network-packet-analysis-tool-charles https:// 阅读全文
posted @ 2016-10-18 14:26 shycieSATINE 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 一、使用cocoapods集成第三方框架时提示 [!] The dependency `DTCoreText` is not used in any concrete target. 解决方案:podfile文件中的内容格式需要修改 platform :ios, '8.0' #use_framewo 阅读全文
posted @ 2016-10-15 14:18 shycieSATINE 阅读(570) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/feiyu-mdm/p/5603585.html GitHub 上值得参考的完整的 iOS-App 源码 阅读全文
posted @ 2016-10-08 17:04 shycieSATINE 阅读(139) 评论(0) 推荐(0) 编辑
摘要: iOS开发常用代码块 转载自http://www.cnblogs.com/tylerzhang/p/5937616.html 阅读全文
posted @ 2016-10-08 12:03 shycieSATINE 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 本文转自:http://www.youduoshao.com/2014-10-05/201410052335.html 这是由于要提交的文件编码时混合了windows和unix符号导致的。 解决方法是将其统一编码或者修改SmartSVN提交前的检查设置。 统一编码在这里就不介绍了,SmartSVN设 阅读全文
posted @ 2016-09-27 14:48 shycieSATINE 阅读(335) 评论(0) 推荐(0) 编辑
摘要: http://www.jianshu.com/p/a3eeae99e902 大牛整理的超全 阅读全文
posted @ 2016-09-23 17:12 shycieSATINE 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 方法一。通过Reachability 方法二:通过AFNetworking 方法三:读取状态栏 https://my.oschina.net/AngeloTsui/blog/745507 方法一用的比较多,方法三并不可靠,不推荐使用。 阅读全文
posted @ 2016-09-22 17:22 shycieSATINE 阅读(129) 评论(0) 推荐(0) 编辑