我有这条线
self.refreshControl = [[UIRefreshControl alloc] init];
但它无法识别,我收到编译错误:
property refreshControl not found
我正在使用本教程:
http://www.raywenderlich.com/21081/introduction-to-in-app-purchases-in-ios-6-tutorial
他们提供这些代码就好像它应该正常工作一样。并想出为什么会发生编译错误?
谢谢!
答案 0 :(得分:2)
refreshControl
是UITableViewController
的属性。检查.h文件中视图控制器的基类类型。