找不到“UITableViewDataDelegate”的协议声明
我是应用程序开发新手,正在尝试遵循 Alasdair Allan 的“学习 iPhone 编程”(O'Reilly,2010),但 xcode 不同意这本书。
它引发了错误“无法找到‘UITableViewDataDelegate’的协议声明”:
#import <UIKit/UIKit.h>
@interface RootController : UIViewController
<UITableViewDataSource, UITableViewDataDelegate>
{
UITableView *tableView;
}
@property (nonatomic, retain) IBOutlet UITableView *tableView;
@end
我发现了很多关于找不到协议声明的类似问题,但关于 UITableViewDataDelegate 的问题却很少。我确信这是一个相对简单的修复,但就像我说的,我对应用程序开发非常陌生,而且还不擅长解决问题!
任何帮助将不胜感激!
I'm new to app development and am trying to follow 'Learning iPhone Programming'by Alasdair Allan (O'Reilly, 2010) but xcode isn't agreeing with the book.
It's bringing up the error 'Cannot find protocol declaration for 'UITableViewDataDelegate' on:
#import <UIKit/UIKit.h>
@interface RootController : UIViewController
<UITableViewDataSource, UITableViewDataDelegate>
{
UITableView *tableView;
}
@property (nonatomic, retain) IBOutlet UITableView *tableView;
@end
I've found a lot of similar questions about not finding protocol declarations but not much on UITableViewDataDelegate. I'm sure this is a relatively easy fix, but like I said, I'm very new to app development and am not to great at problem solving yet!
Any help would be greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有这样的协议,正确的名称是
UITableViewDelegate
。There is no such protocol, the right name is
UITableViewDelegate
.您对 UITableView 中的数据源和委托协议名称感到困惑:
因此您的界面应为:
You're confused between the dataSource and delegate protocol names in
UITableView
:so you're interface should read: