找不到“UITableViewDataDelegate”的协议声明

发布于 2024-12-24 21:26:00 字数 531 浏览 0 评论 0原文

我是应用程序开发新手,正在尝试遵循 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你在看孤独的风景 2024-12-31 21:26:00

没有这样的协议,正确的名称是UITableViewDelegate

There is no such protocol, the right name is UITableViewDelegate.

人生戏 2024-12-31 21:26:00

您对 UITableView 中的数据源和委托协议名称感到困惑:

@property(nonatomic, assign) id<UITableViewDataSource> dataSource

@property(nonatomic, assign) id<UITableViewDelegate> delegate

因此您的界面应为:

@interface RootController : UIViewController <UITableViewDataSource, UITableViewDelegate>

You're confused between the dataSource and delegate protocol names in UITableView:

@property(nonatomic, assign) id<UITableViewDataSource> dataSource

@property(nonatomic, assign) id<UITableViewDelegate> delegate

so you're interface should read:

@interface RootController : UIViewController <UITableViewDataSource, UITableViewDelegate>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文