没有UITableViewController代码的UITableView无法正常工作

时间:2012-08-19 17:10:23

标签: objective-c ios nsmutablearray uitableview

我在普通的UIViewController中使用了以下代码和其他一些内容,表视图位于视图的底部:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
 // Return the number of rows in the section.
    return [names count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"namen";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    // Configure the cell...
    NSString *cellValue = [names objectAtIndex:indexPath.row];
    cell.textLabel.text = cellValue;

    return cell;
}

NSMutableArray名为names(带有4个对象)

3 个答案:

答案 0 :(得分:2)

您需要将表视图的data sourcedelegate设置为您的UIViewController,并为这两种协议实现所需的方法。

答案 1 :(得分:0)

您可能忘记将视图控制器设置为表视图dataSourceUITableViewController自动执行此操作)。

答案 2 :(得分:0)

此代码不适用于UITableViewController,您需要在-tableView:cellForRowAtIndexPath:中创建表格视图单元格。当您使单元格出列时,如果没有可以出列的单元格,则返回值可能为零。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"namen";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    // Create the cell if it could not be dequeued
    if (cell == nil)
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

    // Configure the cell...
    NSString *cellValue = [names objectAtIndex:indexPath.row];
    cell.textLabel.text = cellValue;

    return cell;
}