码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发——错误总结篇&开发中常见错误和警告总结(二十六)

时间:2015-08-30 17:20:43      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

开发中常见错误和警告总结(二十六)

错误提示

 

一:# 错误
[__NSArrayM superview]: unrecognized selector sent to instance 0x7ff953507b10

  • 我忘了加载xib里面的firstObject



二:注意:

如果UIAlertController的样式是ActionSheet, 就不能添加输入框

  • reason: ‘Text fields can only be added to an alert controller of style UIAlertControllerStyleAlert



三:.总结

如果想使用KVC进行字典转模型, 那么字典中的key必须和模型中的属性一模一样(个数 + 名称)

  • this class is not key value coding-compliant for the key score.‘



四:注意:

如果使用KVO监听某个对象的属性, 当对象释放之前一定要移除监听
reason: ‘An instance 0x7f9483516610 of class Person was deallocated while key value observers were still registered with it.

  • 方法:[p removeObserver:self forKeyPath:@"age"];

 

 

iOS开发——错误总结篇&开发中常见错误和警告总结(二十六)

标签:

原文地址:http://www.cnblogs.com/iCocos/p/4771011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!