Crash以及报错总结

2015-12-17  本文已影响4276人  Karen_

dSYM分析

由于这类的崩溃信息通常难以重现, 没有任何的重现步骤,所以我们得找到发布该版本时的原始代码,可能会需要回朔到以前的SVN或者Git版本。
然后找到当时上传代码时使用的DYSM文件,这文件通常在.xcarchive文件中。
对于成功生成archvie的项目, 在这个archive的包中, 是可以通过显示包内容, 看到DSYMs文件夹和一个products文件夹, 继续显示DSYMs文件夹下,可以看到一个xxx.app.DSYM文件,继续对它显示包内容,可以看到Contents/Resources/DWARF/xxxx文件, 这个文件是编译后的二进制文件,通过它可以进行反编译,从而找到二进制对应的源码位置。

  1. 查找.xcarchive文件位置

  2. finder--右键--前往文件夹~/Library/Developer/XCode/Archives

  3. 显示包内容:看到DSYMs文件夹和一个products文件夹, 继续显示DSYMs文件夹下,可以看到一个xxx.app.DSYM文件,继续对它显示包内容,可以看到Contents/Resources/DWARF

使用终端cd 到文件位置

cd /Users/heqin/Downloads/xxxMovie2.0.0_apps_0605_2104\ 13-6-5\ 下午9.02.xcarchive/dSYMs/xxxx.app.dSYM/Contents/Resources/DWARF

找到打开DWARF文件后执行 atos -arch armv7 -o xxxx 0x1153b9.就可以看到这处内存地址反编译回来的源码行.

CoreData: Cannot load NSManagedObjectModel.nil is an illegal URL parameter

这是因为在工程中CoreData的命名和AppDelegate中使用的命名不同造成的,可能是自己修改了CoreData文件但是忘记修改AppDelegate中相应的字符串。
将图片中的字符串改成和CoreData文件名一样就可以了。

No such file or directory ......

找不到某个文件 首先复制文件名 在Build Phases下找
浅白色说明文件找不到了

linker command failed with exit code 1(use -v to see invocation)

文件冲突 左下角搜文件
通常有两种情况 1.有两个相同文件 2.只有一个的时候command+shift+f 搜索 ~~.m 看是否引入.m

Application tried to push a nil view controller on target

试图推出空的试图控制器

must pass a class of kind UITableViewCell

注册方法是否对 打全局断点

分区头乱窜

可能是view的问题可能是frame=头的frame 所以头在相对于tableView偏移的基础上再偏移一次 改为bouns相对于自己
tableView 有自己头试图和尾视图 区的头尾有方法实现可以注册重用池也可以不用重用池[有内存问题不能释放view]

轮播图: 上下滚动时轮播图不走

因为定时器是默认状态下是defaultMode 所以在滚动UITrackingRunLoopMode时好像暂停了一样
在定时器中添加下面一段话:
[[NSRunLoop currentRunLoop] addTimer:self.timer forMode:NSRunLoopCommonModes];
定时器不参与引用计数 直接置空

真机测试时无法运行。报错如下:

You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library

解决办法:
有两种: 1.修改工程设置 2.修改第三方库
第二种没研究,以后涉及会补充。
第一种:
在build setting 中搜索 enable bitcode 修改为NO

1
2
-[NSObject(NSObject)doNotRecognizeSelector:]
定位

系统已经设置中文,app内仍提示英文及复制粘贴也为英文

在Supporting Files 中的info.plist 中将 Localization native development region改为China即可

The certificate used to sign "app名" has either expired or has been revoked. An updated ....

证书失效 重新生成

Supported orientations has no common orientation with the application

检查横屏

Local declaration of 'XXX' hides instance variable

变量名重复

Terminating app due to uncaught exception 'NSGenericException', reason: '*** Collection <__NSArrayM: 0x12763b340> was mutated while being enumerated.'**

遍历数组的同时对数组进行修改

“App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app’s Info.plist file”

修改HTTP

1、在Info.plist中添加 NSAppTransportSecurity 类型 Dictionary ;
2、在 NSAppTransportSecurity 下添加 NSAllowsArbitraryLoads 类型Boolean ,值设为 YES;

Pushing the same view controller instance more than once is not supported

stackoverflow上的解答

意思就是网络极差的环境下在推出一次的情况下再次推出相同界面导致程序crash
解决办法就是先判断栈顶Controller是不是你要推出的界面

iOS10关于相机crash问题

相机权限问题
plist文件中添加Key:Privacy - Camera Usage Description

The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.

终端里删除workspace 重新install

rm -rf MyProject.xcworkspace  
pod install  

关于Xcode8 日志打印

在Edit Scheme-> Run ->Arguments 中添加 Name:OS_ACTIVITY_MODE Vlue:disable

如图 如图

sdk不完全支持BitCode

ld: bitcode bundle could not be generated because '/Users/karen/Desktop/******/Tools/umeng_ios_social_sdk_4.2.5_arm64_custom/UMSocial_Sdk_4.2.5/libUMSocial_Sdk_4.2.5.a(UMSocialHTTPRequestOperation.o)' was built without full bitcode. All object files and libraries for bitcode must be generated from Xcode Archive or Install build for architecture armv7

libUMSocial_Sdk_4.2.5.a第三方库不包含bitcode

BitCode?
bitcode是被编译程序的一种中间形式的代码。包含bitcode配置的程序将会在App store上被编译和链接。bitcode允许苹果在后期重新优化程序的二进制文件,而不需要重新提交一个新的版本到App store上。
如果一个工程里面有静态库的引用,那么所有的静态库也需要打开Bitcode后重新编译。

Bitcode. When you archive for submission tothe App Store, Xcode will compile your app into an intermediate representation.The App Store will then compile the bitcode down into the 64 or 32 bitexecutables as necessary.

解决办法:

  1. 将enable关掉
  2. 给静态库的工程增加一个选项“-fembed-bitcode”

pod search 提示Unable to find a pod with name, author, summary, or descriptionmatching “****”

解决办法:

rm ~/Library/Caches/CocoaPods/search_index.json

Attempt to set a non-property-list object

保存数据类型出错NSUserDefaults支持的数据类型有NSString、 NSNumber、NSDate、 NSArray、NSDictionary、BOOL、NSInteger、NSFloat等系统定义的数据类型。

Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:]

是由于cellForRowAtIndexPath:返回null

React Native Xcode 8.0 报错 Ignoring return value of function declared with warn_unused_result attribute

RCTSRWebSocket.m SecRandomCopyBytes(kSecRandomDefault, sizeof(uint32_t), (uint8_t*)mask_key) 做处理,只需在该处加上(void)即可。如(void)SecRandomCopyBytes(kSecRandomDefault, sizeof(uint32_t), (uint8_t *)mask_key);

今儿遇到个大麻烦,公司项目要迁移到新的svn,不知道为什么CornerStone就一直连不上提示
cornerstone The operation could not be completed 查了好久怎么都不行,换一台电脑就可以。

后来将钥匙串中关于这个项目的密码删除刷新后就好了。

上一篇下一篇

猜你喜欢

热点阅读