
Bug问题解决方法
Anber_zhi
IOS手机APP应用开发
展开
-
IOS提交审核报错---Itms 90086,app提交中出现的问题
今天升级了一个很老的程序,完了提交的时候就出现了ERROR ITMS-90086:"missing 64-bit support. beginning on february 1, 2015, new iOS apps submitted to the app store must be include 64-bit support and be built with the ios8 S原创 2015-07-14 16:22:32 · 4217 阅读 · 0 评论 -
iOS-上传错误之ERROR ITMS-90474-90475: iPad Multitasking support requires these orientations
在使用Xcode7 上传AppStore时候发现ERROR ITMS-90474,ERROR ITMS-90475等错误。ERROR ITMS-90474: “Invalid Bundle. iPad Multitasking support requires these orientations: ‘UIInterfaceOrientationPortrait,UIInterfaceOr原创 2015-12-11 11:11:33 · 9183 阅读 · 0 评论 -
iOS-上传错误之ERROR ITMS-90535 Unexpected CFBundleExecutable Key. 的解决办法
如果提交审核遇到 ITMS-90535 错误,删除相关的Info.plist即可,一般是不小心打包进去的。比如ShareSDK里附带的TencentOpenApi_IOS_Bundle.bundle/Info.plist在工程里面搜索info.plist,可以先搜索info,找到第三方的info.plist文件,删除里面的Executable file对应的一整行,包括值。原创 2015-12-11 11:15:19 · 1687 阅读 · 0 评论 -
腾讯bugly crash追踪平台之符号表创建(二)(定位更加准确!)
刚才看了下腾讯bugly crash追踪里面的 高级功能之符号表:主要是解析log日志里面的十六进制文件的吧 转换成我们能看懂的白话;官网用法说明:Bugly iOS 符号表配置配置符号表的作用在哪?bugly iOS提供了手动和自动两种配置方法,我用的自动的,简单一点吧。自动配置:Xcode+sh脚本1.符号表提取工具依赖java运行环境,所以要先去下载安装 java原创 2015-11-27 18:00:45 · 2628 阅读 · 0 评论 -
腾讯bugly crash追踪平台的使用(一)(挺好用的喔!)
腾讯的这个bugly crash追踪平台跟微信关联,绑定手机,有用户在使用app过程中如果出现crash现象,就会收到微信提醒。可以及时查看程序问题。官网说明:Bugly使用文档那这个东西怎么用呢,很简单。官网下载对应的SDK didFinishLaunchingWithOptions方法中添加代码:[[CrashReporter sharedInstance] enab原创 2015-11-27 16:18:55 · 2649 阅读 · 0 评论 -
<Error>: ImageIO: PNG invalid PNG file: iDOT doesn't point to valid IDAT chunk
: ImageIO: PNG invalid PNG file: iDOT doesn't point to valid IDAT chunk 今天打包的时候,出现这个警告:说的是:png file invalid;从新导入一下png图片就ok了。主要是你要知道是哪张图片出问题了。原创 2016-03-02 13:54:21 · 2709 阅读 · 0 评论 -
[BUG]-Assertion failure in void _UIPerformResizeOfTextViewForTextContainer
[错误]Assertion failure in void _UIPerformResizeOfTextViewForTextContainer出現原因:程序启动的时候要去请求订阅信息,请求完了之后要根据结果改变界面显示,就导致了这个错误出现。 因为程序里涉及到请求你服务器信息,所以我新开辟了一个多线程进行处理,为了不影响用户交互使用时候感到卡顿或者等待时间过长。错原创 2016-03-07 14:26:36 · 1493 阅读 · 0 评论 -
BUG-Undefined symbols for architecture x86_64错误
当我们在一个项目中想使用外部其他项目的一个类时,可以在项目中直接添加类文件到项目中。但是,在编译的时候出现了这样的错误:Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_Person", referenced from:转载 2016-04-11 13:55:32 · 1429 阅读 · 0 评论 -
BUG-Auto property synthesis will not synthesize property 'description' because it is 'readwrite'
今天遇见实现一个网络请求接口的遇到一个问题:@property (nonatomic,strong)NSString * description; //O 描述:最长256字节报错:Auto property synthesis will not synthesize property 'description' because it is 'readwrite' bu原创 2016-07-25 16:41:35 · 1005 阅读 · 0 评论 -
随笔-_SCNetworkReachabilityGetFlags报错原因
"_SCError", referenced from: -[MTAWXOReachability startNotifier] in libWeChatSDK.a(MTAWXOReachability.o) "_SCNetworkReachabilityGetFlags", referenced from: -[MTAWXOReachability isReac原创 2016-07-16 11:36:32 · 4049 阅读 · 1 评论 -
iOS-新手学习之程序断点调试
原文地址: iOS开发何如在调试的时候轻松找到程序在哪里崩溃起因 有不少人在评论发一些崩溃信息,问我程序怎么回事,其实如果你知道了程序崩溃在哪行代码崩溃了,就很容易定位问题了。android开发看崩溃log就能看到具体哪行代码出问题,那在iOS开发怎么快速定位到具体哪行代码崩溃呢。步骤1在xcode添加一个通用断点就行了。方法如下:点击项目导航断原创 2015-11-02 14:12:41 · 782 阅读 · 0 评论 -
IOS-CodeSign error: code signing is required for product type Application in SDK iOS
在真机测试的时候往往会突然出现这样一个错误,code signing is required for product type 'Application' in SDK 'iOS 9.0' ,就是说代码签名证书不对劲。解决方案,1.选择工程->Build Settings -> Code Signing -> Code Signing Identity -> Debug -> A原创 2015-11-17 10:44:37 · 855 阅读 · 0 评论 -
iOS-如何使用symbolicatecrash
如何使用symbolicatecrash工具分析iOS Crash文件:原文地址:[iOS Crash文件分析]-如何使用symbolicatecrash工具原文作者:angellixf一、在桌面创建一个crash文件夹1.Xcode-Window-Organize找到Archives找到App-右击-Show in Finder2.复制.app和.app.dS转载 2015-10-23 14:56:08 · 1021 阅读 · 1 评论 -
ios报错--pie can only be used when targeting iOS 4.2 or later clang: error: linker command failed with
下载了一个demo 运行出现报错:-pie can only be used when targeting iOS 4.2 or later clang: error: linker command failed with exit 修正方法:原创 2015-08-17 10:20:17 · 721 阅读 · 0 评论 -
随笔-property follows cocoa naming convention for returning 'owned' objects
这两天都遇到这个错误2次了 第一次是 创建了一个 newpassword的textField属性 第二次是 申明了一个 类的对象 copyStateVC;property follows cocoa naming convention for returning 'owned' objects查了一番,终于知道原因:命名不规范 ,属性不能以关键字符开头。记得以前刚学OC的时候看到过,不原创 2015-07-24 10:46:10 · 25843 阅读 · 2 评论 -
随笔-IOS 在IOS6中设置navigationBar背景图片 会有一条 黑色阴影 --- 解决方案
//给navigationBar设置背景图片 if ([self.navigationController.navigationBar respondsToSelector:@selector(setBackgroundImage:forBarMetrics:)]) { [self.navigationController.navigationBar转载 2015-04-14 17:50:59 · 677 阅读 · 0 评论 -
随笔-Undefined symbols for architecture i386 _deflate referenced from || -fno-objc-arc
Undefined symbols for architecture i386 _deflate referenced from解决方法:添加框架:libz.dylib 第三方引用引起的arc管理机制问题解决方法:-fno-objc-arc原创 2015-07-21 11:17:07 · 660 阅读 · 0 评论 -
ios - 解决XCode6在IOS7系统上出现部分黑屏与不适配问题
最近升级了XCode发现了一个bug,XCode6所建立的工程在ios8上面可以完美运行,但是在ios7上就出现 statusbar black的情况,google了一下国外的大神,现将解决方案给大家分享一下。问题页面:更改如图所示配置即可,1.选中工程文件。 2.找到App Icons and Launch Images,点击Use转载 2015-09-30 11:22:51 · 762 阅读 · 0 评论 -
IOS9-升级Xcode7后报错Assertion failure in -[UIApplication _runWithMainScene:处理
以下是本来在使用Xcode7时遇到错误的一些解决方案,有网友提供的,也有自己总结的,希望能帮助大家。错误之*** Assertion failure in -[UIApplication _runWithMainScene:transitionContext:completion:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UI转载 2015-10-10 14:55:54 · 1321 阅读 · 0 评论 -
Undefined symbols for architecture x86_64:的一种解决办法
Undefined symbols for architecture x86_64: "_iconv_open", referenced from: _main in main.o "_iconv", referenced from: _main in main.o "_iconv_close", referenced from:原创 2015-09-22 17:03:30 · 4293 阅读 · 0 评论 -
随笔-Xcode6新框架的屏幕适配,屏幕上下有黑条,iphone6上不能全屏,只能在左上角显示。
昨天遇到一个问题: 项目是画的iphone5的界面,里面用的图片是@2x的图片,以前在iphone6+的模拟器上跑起来就是在左上角显示,我还一直以为是因为我没有在项目中导入@3x的图片导致的,结果昨天在iphone6的真机上跑起来还是只能在左上角显示,然后把xib的尺寸从 4 改成了 freedom 就出现了屏幕上下各有一个黑条,xib只在中间显示,觉得超级奇怪,然后去查了一圈的资料。 最原创 2015-08-14 09:31:03 · 1550 阅读 · 2 评论 -
iOS-上传程序错误:Your build settings specify a provisioning profile with the UUID, no provisioning profile
在Xcode中当你在更新了你得证书而再重新编译你的程序,真机调试会出现“Your build settings specify a provisioning profile with the UUID‘XXX’, however, no such provisioning profile was found. Xcode can resolve this issue by downloadi原创 2015-11-13 13:36:33 · 953 阅读 · 0 评论 -
iOS10 里面适配权限Crash的问题
最近在看类似微信朋友圈的实现,从网上down了一个不错的demo,结果跑步起来,查了一下,发现是IOS10的一个小问题:This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app's Info.plist must contain原创 2016-10-13 09:23:57 · 24195 阅读 · 0 评论