iOS could not load any Objective-C class information

warning: could not load any Objective-C class information. This will significantly reduce the quality of type information available.

出现这种警告应该就是循环引用的问题了。好好查看一下断点处的代码。找到循环引用的地方更改掉就可以了。

就比如 :

- (void) createTableView

{

     [self  createTableView];

}

上述代码就是简单的循环引用了。


猜你喜欢

转载自blog.csdn.net/iamonmyownway/article/details/64122742