
iOS问题合集
秃头少女_
金蝉脱壳
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
cocoapods问题合集
1.[!] Unable to satisfy the following requirements:- `JSPatch (= 1.1.1)` required by `Podfile.lock`- `JSPatch (~> 1.1)` required by `CMJSPatch (0.1.0)`None of your spec sources原创 2016-12-15 09:55:50 · 1116 阅读 · 0 评论 -
iOS 开发中实用小知识点
1.图片上传base64转码 转义特殊字符- (NSString*)sealImage:(UIImage*)_sealImage { NSData *data =UIImageJPEGRepresentation(_sealImage,0.2f); NSString *encodedImageStr = [database64EncodedStr原创 2017-01-14 09:25:33 · 330 阅读 · 0 评论 -
xcode编译报错duplicate symbols for architecture arm64
1、首先排查了是否有名字重复的文件;2、检查是否在#import头文件的时候,不小心把.h写成了.m。(这个很容易被忽略,谨记!)原创 2017-03-03 14:22:06 · 1555 阅读 · 0 评论 -
提交appStore审核被拒
The seller and company names associated with your app do not reflect the name “车猫网” in the app or its metadata, as required by section 1.2 of the Apple Developer Program License Agreement.Your a原创 2017-03-20 09:34:10 · 1551 阅读 · 0 评论 -
NSURL 方法
http://blog.youkuaiyun.com/zhibudefeng/article/details/7920686原创 2017-03-20 10:13:08 · 361 阅读 · 0 评论 -
UIAlertController:supportedInterfaceOrientations was invoked recursively
http://blog.youkuaiyun.com/jiang314/article/details/52402961转载 2017-03-13 18:04:23 · 1317 阅读 · 0 评论 -
iOS 导航栏黑线问题(隐藏与显示)
项目需求 导航栏要求显示红色,改了之后 看到底部有条细细的黑线,巨丑~隐藏黑线:隐藏黑线然后发现 切换界面其他界面的黑线没了,巨丑~要在当前界面切出的时候添加显示黑线的代码显示黑线:显示黑线至此,解决问题这篇总结很详细:http://www.jianshu.com/p/effa4a48f1e3原创 2017-06-01 10:02:17 · 1780 阅读 · 0 评论 -
iOS开发中一些需要授权的功能在plist中添加的字段白名单
1.https在Info.plist中添加NSAppTransportSecurity类型Dictionary。 在NSAppTransportSecurity下添加NSAllowsArbitraryLoads类型Boolean,值设为YES NSAppTransportSecurity NSAllowsArbitraryLo原创 2016-12-20 10:04:04 · 1947 阅读 · 0 评论