UITableViewController 警告 - 帮助!
所以,我在下面发布我的代码。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath // I get a warning here Incomplete method implementation //
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell...
NSLog (@"Dobby4");
NSInteger row = [indexPath row];
cell.text = [dogArray objectAtIndex:row];
//I get a warning for the line above-- 'text' is deprecated //
return cell;
}
所以,
1. 我收到警告 - 该函数的方法实现不完整。
2. 我收到另一个警告“文本”已弃用”
3. 我尝试调试并尝试打印一行“Dobby4” - 但它没有打印。
我希望得到一些帮助。
So, I am posting my code below.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath // I get a warning here Incomplete method implementation //
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell...
NSLog (@"Dobby4");
NSInteger row = [indexPath row];
cell.text = [dogArray objectAtIndex:row];
//I get a warning for the line above-- 'text' is deprecated //
return cell;
}
So,
1. I get a warning - incomplete method implementation for that function.
2. I get another warning 'text' is deprecated'
3. I tried debugging and tried to print a line "Dobby4" - and it DID NOT print.
I would appreciate some help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
text
属性来设置文本(正如警告所述,已弃用)。使用textLabel
,它是cell
的子视图。因此该行将是cell.textLabel.text = [dogArray objectAtIndex:row];
。Dobby4
,您的numberOfSectionsInTableView:
或tableView:numberOfRowsInSection:
返回 0。如果不是这样,那么您还没有没有正确连接您的数据源。text
property to set the text (it is as the warning says, deprecated). Use thetextLabel
which is a subview ofcell
. So that line will becell.textLabel.text = [dogArray objectAtIndex:row];
.Dobby4
, either yournumberOfSectionsInTableView:
ortableView:numberOfRowsInSection:
is returning 0. If this is not so, then you haven't connected your datasource properly.1)编译器可能会抱怨,因为方法实现可能不存在于您的头文件中,反之亦然?
2) UITableViewCell 的 .text 属性确实从 iOS 3.0 开始就被弃用了,所以你将无法使用它,因为你肯定是针对更高的 iOS 版本。
3) 或许与 1) 相关。
希望这对您有所帮助,请随时关注我们!
1) The compiler could be moaning as the method implementation may not be present in your header file or vice versa?
2) the .text property of a UITableViewCell is indeed deprecated since iOS 3.0 so you will not be able to use it, seeing as you are definitely targeting a higher iOS version.
3) Perhaps linked to 1).
Hope this was of some help, keep us posted!