0

首先,我是 iOS 开发的新手,所以这可能是一个简单的问题,

我有以下代码

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 1;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] ;

    cell.textLabel.text = @"Hello!";
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    NSLog(@"Creating cell for %i:%i", indexPath.section, indexPath.row );

    return cell;
}

现在表格显示,但所有行都是空白的。并且正在创建细胞。不确定这是否重要,但我没有使用 xib 或故事板,所以我不知道它是否是样式问题。

我真的对我在做什么一无所知。我尝试过一些教程,但每次我都在同一个地方找到一张空白表。

谢谢大家的帮助!我对想法和可能的教程等持开放态度。

4

3 回答 3

1

(这更像是评论,但对于评论字段来说太大了。)

我已将您的方法完全复制到我的 .m 文件中,并且可以正常工作。文件的其余部分如下所示:

@interface MYViewController ()

@end

@implementation MYViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    UITableView *table = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 320, 640) style:UITableViewStylePlain];
    [table setDataSource:self];
    [table setDelegate:self];
    [self.view addSubview:table];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

我假设您设置了数据源,因为您要打印 NSLogs。

于 2013-04-13T23:08:24.137 回答
0

您确定 UITableView 没有隐藏,没有 0 alpha,并且高于所有其他视图吗?

于 2013-04-13T23:18:47.800 回答
0

如果您显示的数据有可能在您外出并返回视图时发生变化,我建议您使用

[self.yourTableViewObject reloadData];

这将调用所有委托方法(获取部分、单个单元格)并重新填充您的表格视图。

于 2013-04-14T02:53:33.910 回答