随笔分类 -  常见问题

摘要:http://www.jianshu.com/users/5b9cf22a3692/latest_articles 阅读全文
posted @ 2016-11-04 10:11 回读(IOS) 阅读(184) 评论(0) 推荐(0)
摘要:Xcode好用的快捷键 ^ : ctrl ⬆️ : shift -: alt cmd + shift + j 定位到当前打开的文件 cmd + shift +o 快速打开文件 cmd + shift + f 整个项目查找 cmd + shift + k clean cmd + shift + y 打 阅读全文
posted @ 2016-07-03 15:15 回读(IOS) 阅读(369) 评论(0) 推荐(0)
摘要:IOS加载自定义的字体需要点活儿Xcode自带字体样式查询:http://iosfonts.com/1.下载所需要的ttf文件,导入工程中,在Info.plist中添加一项:Fonts provided by application,填写字体文件名称加后缀.如图: Info.plist配置 Info 阅读全文
posted @ 2016-07-02 15:21 回读(IOS) 阅读(394) 评论(0) 推荐(0)
摘要:cocoaPods的使用 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 阅读全文
posted @ 2016-07-01 15:07 回读(IOS) 阅读(327) 评论(0) 推荐(0)
摘要:添加同一个控件多次到父控件,最终只会添加一个该控件 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - TableVie 阅读全文
posted @ 2016-06-30 22:32 回读(IOS) 阅读(392) 评论(0) 推荐(0)
摘要:下拉刷新 https://github.com/CoderMJLee/MJRefresh 模型转换 https://github.com/CoderMJLee/MJExtension 网络请求 https://github.com/AFNetworking/AFNetworking 网络图片 htt 阅读全文
posted @ 2015-11-10 18:24 回读(IOS) 阅读(223) 评论(0) 推荐(0)
摘要:来自:https://github.com/Tim9Liu9/TimLiu-iOS#中文开发博客列表 阅读全文
posted @ 2015-11-10 18:04 回读(IOS) 阅读(202) 评论(0) 推荐(0)
摘要:前言:在IOS开发中,有时候想改一下项目的名字,都会遇到很多麻烦。直接改项目名吧,XCODE又不会帮你改所有的名字。总是有很多文件、文件夹或者是项目设置的项。而且都是不能随便改的,有时候改着改着,编译不了。所以各位重命名项目时,记得先备份好一份噢。本文我会介绍一种方法,是我自己参考了很多资料得出的总... 阅读全文
posted @ 2015-07-05 13:52 回读(IOS) 阅读(1928) 评论(0) 推荐(0)
摘要:1.打开终端,输入以下代码获取到DVTPlugInCompatibilityUUID defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID2.然后输入如下命令 【最后一项是获取到的DVTPlu... 阅读全文
posted @ 2015-04-18 22:45 回读(IOS) 阅读(209) 评论(0) 推荐(0)
摘要:http://blog.csdn.net/teng_ontheway/article/details/8467932在Xcode下编译工程正常,在模拟器下运行正常,最后在真机上运行的时候出现了如下错误:Could not launch "FeedMeWorms" failed to get the ... 阅读全文
posted @ 2015-02-27 11:31 回读(IOS) 阅读(574) 评论(0) 推荐(0)
摘要:在iOS5.1的部分设备上,emoji表情无法正常显示.我测试了一下,iOS5.1(9B176 foriPhone4)无法正常显示emoji,全部是方框iOS5.1(9B179 for iPhone 4S)上面可以正常显示emoji.原因是iOS4上面的emoji用的是softbank的编码,到iO... 阅读全文
posted @ 2014-12-11 14:52 回读(IOS) 阅读(1028) 评论(0) 推荐(0)
摘要:如图解决见图:再次运行: 阅读全文
posted @ 2014-12-06 13:25 回读(IOS) 阅读(346) 评论(0) 推荐(0)
摘要:内存泄漏问题的解决 内存泄漏(Memory Leaks)是当一个对象或变量在使用完成后没有释放掉,这个对象一直占有着这块内存,直到应用停止。如果这种对象过多内存就会耗尽,其它的应用就无法运行。这个问题在C++、C和Objective-C的MRR中是比较普遍的问题。 在Objective-C中释放对象 阅读全文
posted @ 2014-11-28 13:33 回读(IOS) 阅读(420) 评论(0) 推荐(0)
摘要:Xcode升级到5.1 新特性之一就是默认让所有App都通过64位编译器编译。原来在Xcode5.0.x的时候默认的Standard architectures只有(arm7,armv7s),到5.1之后默认就带上arm64的参数了。目前临时的解决办法是1.把1.选中Targets—>Build S... 阅读全文
posted @ 2014-11-26 09:40 回读(IOS) 阅读(276) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2014-11-12 16:53 回读(IOS) 阅读(408) 评论(0) 推荐(0)
摘要:在真机测试的时候往往会突然出现这样一个错误,code signing is required for product type 'Application' in SDK 'iOS 7.0' ,就是说代码签名证书不对劲。解决方案,1.选择工程->Build Settings -> Code Signi... 阅读全文
posted @ 2014-10-22 10:12 回读(IOS) 阅读(228) 评论(0) 推荐(0)