在ViewController中设置了TableView的数据源和委托但没有发生任何事情

时间:2013-08-28 00:44:08

标签: ios uitableview uiviewcontroller uitabbarcontroller

我在UIViewController中有一个UITableView,我想我已经完成了所有必要的步骤 设置它但是当将NSLog放入其协议的必需方法时,我得不到tableView的响应

enter image description here

我告诉UITableView我将实现它的协议

@interface SubSelectionTableViewWithMenuVC : UIViewController <CustomTableViewCellDelegate,
                                                                UITableViewDelegate,
                                                                UITableViewDataSource,
                                                                TableViewModelDelegate>

我在标题

中设置了tableView插座
@property (weak, nonatomic) IBOutlet UITableView  *tableView;

ViewDidLoad中,我将委托设置为自己。

self.tableView.delegate = self;
self.tableView.dataSource = self;

我实现了所需的委托方法

– tableView:cellForRowAtIndexPath: 

– tableView:numberOfRowsInSection:  

但没有任何反应,我在tableView对象的ViewDidLoad中做了一个NSLog,它告诉我这个:

tableView: <UITableView: 0x1d43aa00; frame = (0 0; 0 0); clipsToBounds = YES;
autoresize = TM+BM; gestureRecognizers = <NSArray: 0x1cdc54f0>; layer = <CALayer:
0x1cdc5350>; contentOffset: {0, 0}>

必需的委托方法:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    NSLog(@"num of sections");
    return 1;
}

#pragma mark - UI set cell contents


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"cell for row at indepath");
    static NSString *CellIdentifier = CELL_IDENTIFIER_LECTURES;
    CustomTableViewCell *cell = (CustomTableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    cell.indexPath = indexPath;
    cell.delegate = self;

    // Configure cell
    [cell.mainLabel setText:[self titleForRow:indexPath.row]];
    [cell.numberLabel setText:[NSString stringWithFormat:@"%i", indexPath.row + 1]];
    cell.state = [self restoreTagButtonStateForCell:cell];

    // perform selector on cell to update and show its last stored state
    if ([cell respondsToSelector:@selector(updateButtonImageState)]) {
        [cell performSelector:@selector(updateButtonImageState)];
    } else {
        [NSException raise:NSGenericException format:@"cell does not respond to selector"];
    }

    // Setting the Highligthed color of selected cell
    UIView *goldenColor = [[UIView alloc] init];
    goldenColor.backgroundColor = [UIColor colorWithRed:0.824 green:0.749    blue:0.553 alpha:1.0f];
    cell.selectedBackgroundView = goldenColor;

    return cell;
}

1 个答案:

答案 0 :(得分:1)

原因是您没有实施– tableView:numberOfRowsInSection:方法。实现此方法并返回所需的金额。