UITableViewController:不完整方法实现警告是怎么回事?
我正在开发我的第一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
#warning
指令足够恰当地使编译器发出警告。删除这两行,警告就会消失。The
#warning
directive, appropriately enough, causes the compiler to emit a warning. Delete those two lines and the warnings should go away.