iOS 问题总汇
文章平均质量分 66
想北飞的雁
这个作者很懒,什么都没留下…
展开
-
this bundle is invalid . new apps and app updates submitted to the app store must be built with publ
今天传appstore的时候发生了一个问题。this bundle is invalid . new apps and app updates submitted to the app store must be built with public在网上查了好久,始终告诉我,要使用xcode5,和IOS7但是奇怪的是我本来使用的就是xcode5.1和ios7打的转载 2014-08-21 10:05:08 · 668 阅读 · 0 评论 -
新年刚来上班一上传APP就出现Missing iOS Distribution signing indetity错误
在网上查了一下,原因是WWDR证书过期导致。解决步骤: 一定要选择 keychain->显示->显示过期证,然后把过期的WWDR删除掉,然后再安装新的WWDR注意:不能直接装新的,这样是没有删掉旧的还是会出现问题。下载地址:http://www.apple.com/certificateauthority/WWDR Certificate (原创 2016-02-16 10:45:47 · 688 阅读 · 2 评论 -
解决UICollectionView内容填充不满无法下拉的问题
当UICollectionView不够一页的时候下拉的时候都不会触发UIScrollVIew的scrollViewDidScroll代理方法下拉刷新控件基本都是基于scrollViewDidScroll代理方法来进行操作所以在创建UICollectionView的时候添加self.collectionView.alwaysBounceVertical = YES;转载 2015-09-11 12:43:10 · 2979 阅读 · 0 评论 -
UITableView添加UITapGestureRecognizer与didSelectRowAtIndexPath冲突解决
在UITableView上添加了UITapGestureRecognizer后会导致didSelectRowAtIndexPath失效,原因是UITapGestureRecognizer会截取了tableView的touch事件,导致无法响应行选择,解决方法是重写UIGestureRecognizerDelegate中的-(BOOL)gestureRecognizer:(UIGestu转载 2015-07-02 13:24:05 · 1499 阅读 · 0 评论 -
使用shareSDK调用QQ好友分享遇到的问题
登录QQ互联(http://connect.qq.com/ )注册成为开发者并登记应用取得AppId,然后打开下图位置,在URL Types中添加QQ的AppID,其格式为:”QQ” + AppId的16进制(如果appId转换的16进制数不够8位则在前面补0,如转换的是:5FB8B52,则最终填入为:QQ05FB8B52 注意:转换后的字母要大写)转换16进制的方法:echo ‘ibas原创 2015-05-11 10:31:22 · 4262 阅读 · 0 评论 -
Simulator slow-motion animations are now on(iOS模拟器动画变慢的原因)
1、在做项目的时候经常发现IOS模拟器遇到慢动作,比如弹出一个UIAlertView,push到一个viewController,这个过程显示的非常慢,而且Xcode控制台打印这样一句话:Simulator slow-motion animations are now on还以为是模拟器假死,后面发现不是这样的,是自己不小心触发了某个动作。选中 IOS模拟器,然后连转载 2014-08-05 13:47:22 · 3954 阅读 · 0 评论 -
Property's synthesized getter follows Cocoa naming convention for returning.
Property's synthesized getter follows Cocoa naming convention for returning.今天早上在整理代码的时候发现了如上警告。在网上查询后发现,是因为苹果在新的编码,不推荐变量以new、copy等关键字开头。突然响起来之前也有朋友问过类似的问题。特做以记录。转载 2014-08-15 10:41:43 · 478 阅读 · 0 评论 -
property's synthesized getter follows Cocoa naming convention for returning 'owned' objects
Property's synthesized getter follows Cocoa naming convention for returning.今天早上在整理代码的时候发现了如上警告。在网上查询后发现,是因为苹果在新的编码,不推荐变量以new、copy等关键字开头。突然响起来之前也有朋友问过类似的问题。特做以记录。原创 2014-06-16 16:47:20 · 473 阅读 · 0 评论 -
添加百度地图API出现duplicate symbol _isRetina in:错误
在添加百度最新地图sdk出现duplicate symbol _isRetina in:错误,解决方案:Build Settings中的Other Linker Flags中如果你添加了“all_load”或"-ObjC"或其他,必须删除,问题就解决了。注意,官方的配置方案中“引入静态库文件”-》“第三种方式:”有要求在“Other Linker Flags”添加“-ObjC”,所以导致很多人原创 2014-03-27 16:57:28 · 1182 阅读 · 0 评论 -
Xcode5中ios7模拟器出现 Cannot find executable for CFBundle ... axbundle> (not loaded) 的解决办法
2014-01-28 03:05:51.807 Test1[3661:70b] Cannot find executable for CFBundle 0x10acbc900 (not loaded)某天打开一个项目开始开发,选择 iOS7 模拟器运行,莫名其妙出现类似上面的提示信息,有这提示的情况程序就会莫名其妙有些BUG尝试了各种办法都没有解决,包括重置模拟器转载 2014-06-11 13:01:57 · 656 阅读 · 0 评论 -
Undefined symbols for architecture i386或者armv7: “_OBJC_CLASS_$_XXX”
Undefined symbols for architecture i386:“_OBJC_CLASS_$_XXX”, referenced from:objc-class-ref in XXXld: symbol(s) not found for architecture i386clang: error: linker command failed w转载 2014-02-25 13:46:18 · 703 阅读 · 0 评论 -
iOS数组排序及遇到的问题duplicate symbol XXX
很多方面需要用到数组排序,有三种j原创 2014-08-19 14:11:26 · 554 阅读 · 0 评论 -
iOS运行出现No application was specified.
今天运行一个以前的项目,突然出现了如下错误原因是这个项目工程没有标志,在Bundle identifier后面填上你的标识就行了,记得运行前Command+shift+k清空一下原创 2014-05-15 15:55:50 · 996 阅读 · 0 评论 -
reason: '-[__NSCFArray removeObjectAtIndex:]: mutating method sent to immutable object
2011-01-25 10:46:31.992 086Sections[651:307] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[__NSCFArray removeObjectAtIndex:]: mutating method sent to imm转载 2014-10-13 15:58:47 · 1625 阅读 · 0 评论 -
While reading XXX pngcrush caught libpng error: N
今天引入了几个png的图片。发现如下错误!While reading /XXX/XXX/XXX/img1.png pngcrush caught libpng error: Not a PNG filCould not find file: /Users/XXX/Library/Developer/Xcode/DerivedData/CookBookDemo-cnttc转载 2015-04-23 16:14:54 · 1501 阅读 · 0 评论 -
Xcode8 及iOS10适配问题汇总
转载地址:http://blog.csdn.net/c386890506/article/details/52603807 1.Notification(通知)自从Notification被引入之后,苹果就不断的更新优化,但这些更新优化只是小打小闹,直至现在iOS 10开始真正的进行大改重构,这让开发者也体会到UserNotifications的易用,功能也变得非常强大。转载 2016-09-22 15:02:29 · 5728 阅读 · 0 评论