UITableViewController:不完整方法实现警告是怎么回事?

发布于 2024-10-26 13:45:01 字数 572 浏览 1 评论 0原文

我正在开发我的第一个 iOS/Cocoa Touch 应用程序,为了处理用户设置,我需要为导航控制器构建一些表格视图。无论如何,我创建了一个自定义 UITableViewController,并将其推送到我的 UINavigationController 上。我没有更改以下两个方法中的任何内容(除了返回数字),但它们在 XCode 中消除了警告。什么给?

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
#warning Potentially incomplete method implementation.
// Return the number of sections.
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
#warning Incomplete method implementation.
// Return the number of rows in the section.
return 3;
}

I'm working on my first iOS/Cocoa Touch app, and to handle user settings, I need to build a few table views for a navigation controller. At any rate, I created a custom UITableViewController, and pushed it on my UINavigationController. I didn't change a thing (except the return numbers) in the following two methods, but they kick out warnings in XCode. What gives?

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
#warning Potentially incomplete method implementation.
// Return the number of sections.
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
#warning Incomplete method implementation.
// Return the number of rows in the section.
return 3;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

滥情空心 2024-11-02 13:45:01

#warning 指令足够恰当地使编译器发出警告。删除这两行,警告就会消失。

The #warning directive, appropriately enough, causes the compiler to emit a warning. Delete those two lines and the warnings should go away.

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