UITableViewController 警告 - 帮助!

发布于 2024-11-09 15:34:04 字数 856 浏览 0 评论 0原文

所以,我在下面发布我的代码。

- (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 技术交流群。

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

发布评论

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

评论(2

方觉久 2024-11-16 15:34:04
  1. 我怀疑是不是和这个功能有关。大概就是之前的方法。如果您也将其放入代码清单中,那就太好了。
  2. 您不应该使用 text 属性来设置文本(正如警告所述,已弃用)。使用 textLabel,它是 cell 的子视图。因此该行将是 cell.textLabel.text = [dogArray objectAtIndex:row];
  3. 由于它没有打印 Dobby4,您的 numberOfSectionsInTableView:tableView:numberOfRowsInSection: 返回 0。如果不是这样,那么您还没有没有正确连接您的数据源。
  1. I doubt it is do with this function. Probably the method before. It would be good if you put that in the code listing too.
  2. You shouldn't be using the text property to set the text (it is as the warning says, deprecated). Use the textLabel which is a subview of cell. So that line will be cell.textLabel.text = [dogArray objectAtIndex:row];.
  3. Since it is not printing Dobby4, either your numberOfSectionsInTableView: or tableView:numberOfRowsInSection: is returning 0. If this is not so, then you haven't connected your datasource properly.
落叶缤纷 2024-11-16 15:34:04

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!

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