美文网首页
iOS 开发时遇到的Error 记录

iOS 开发时遇到的Error 记录

作者: 麓庵 | 来源:发表于2019-03-29 13:44 被阅读0次

Thread 1: Fatal error: Dictionary literal contains duplicate keys
字典在定义的时候中包含了重复的key ,找到重复的key 删除即可

Ambiguous use of 'kArticleId'
可能是在定义了两个或多个相同名称的常量。

Raw value for enum case must be a literal
枚举值的原始值必须是文字值。

Constrained extension must be declared on the unspecialized generic type 'Array' with constraints specified by a 'where' clause

Protocol methods must not have bodies

Non-class type 'Array<Element>' cannot conform to class protocol 'RemoveObject'

Thread 1: Fatal error: Index out of range
数组越界

Unknown class _TtC9Carepilot19ExpandableTableView in Interface Builder file.

Cannot convert value of type '() -> _' to specified type 'UIView'

相关文章

网友评论

      本文标题:iOS 开发时遇到的Error 记录

      本文链接:https://www.haomeiwen.com/subject/svjlbqtx.html