我有这条线

self.refreshControl = [[UIRefreshControl alloc] init];


但无法识别,并且出现编译错误:

property refreshControl not found


我正在使用本教程:

http://www.raywenderlich.com/21081/introduction-to-in-app-purchases-in-ios-6-tutorial

他们提供了该代码,就好像它应该可以正常工作一样。想知道为什么会发生编译错误?

谢谢!

最佳答案

refreshControlUITableViewController的属性。在.h文件中检查视图控制器的基类类型。

关于ios - iOS-无法识别self.refreshControl,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18115391/

10-14 22:00