添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

本文已参与掘金创作者训练营第三期「高产更文」赛道,详情查看: 掘力计划|创作者训练营第三期正在进行,「写」出个人影响力。

NSInvalidArgumentException

*** -[__NSCFString stringByAppendingString:]: nil argument

运行时插入的Object为nil 或者调用一个没有实现的方法 performSegue但是没有在storyboard里面连线

解决办法: (1). 分析业务避免运行时对象为nil的情况 (2). 使用 _obj ?: @"" 设置对象为nil时的默认值,防止引发Crash (3). 检查调用的方法是否实现

推荐用无侵入的第三方库来避免这种问题,必要的时候还能结合bugly上报自定义异常 github.com/jasenhuang/…

解决方案2: 发现上线的app一直会有这个crash信息,直到最近才去重视这个问题,发现是在手写输入的时候会crash,原因是因为我在UIScrollview的category中重写了三个方法如下:

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { [[self nextResponder] touchesBegan:touches withEvent:event]; [super touchesBegan:touches withEvent:event]; -(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event { [[self nextResponder] touchesMoved:touches withEvent:event]; [super touchesMoved:touches withEvent:event]; -(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { [[self nextResponder] touchesEnded:touches withEvent:event]; [super touchesEnded:touches withEvent:event];

SIGABRT

abort program SIG是信号名的通用前缀。ABRT是abort program的缩写。

当操作系统发现不安全的情况时,它能够对这种情况进行更多的控制,必要的话,它能要求进程进行清理工作。在调试造成此信号的底层错误时,并没有什么妙招。 如 cocos2d 或 UIKit 等框架通常会在特定的前提条件没有满足或一些糟糕的情况出现时调用 C 函数 abort (由它来发送此信号)。

如果是iOS系统: 发生在UIApplication WillTerminate 时,是主动退出应用时发生的,所以对用户没什么实际影响。 iOS10访问相册时发生,目前只发生在iOS10+系统,需要修改工程plist文件,加入访问权限提示信息。 补充:iOS 10 has updated privacy policy and implemented new privacy rules. You have to update your Info.plist app with this following fields by authorisation asked.

  • 30 道 Vue 面试题,内含详细讲解(涵盖入门到精通,自测 Vue 掌握程度)
  • 中高级前端大厂面试秘籍,为你保驾护航金三银四,直通大厂(上)
  • 一个合格(优秀)的前端都应该阅读这些文章
  • 「2021」高频前端面试题汇总之JavaScript篇(上)
  • 最近两周出去面试遇到的面试题(前端初级、长更)
  • 面试了十几个高级前端,竟然连(扁平数据结构转Tree)都写不出来
  • 1.5万字概括ES6全部特性(已更新ES2020)
  •