2

我现在正在使用 UITableView,我拥有的是

我的类.h

@interface MyClass : UIViewController {

}

@property (strong , strong) UILabel *name;

@property (strong , strong) UILabel *add;

我的班级.m

-(NSInteger)tableView:(UITableView *)atableView numberOfRowsInSection:(NSInteger)section{

return 3 ;
 }

-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"cell";
tableCell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier];
...................................................

return tableCell; 

}

当我在numberOfRowsInSection设置断点时,它似乎根本没有被执行。现在让我很困惑。有遇到过的请指教。

谢谢

4

1 回答 1

3

最常见的原因是没有将视图控制器设置为表视图委托和数据源。如果它内置在故事板中,您可以通过选择表上的连接检查器并将这些属性拖到视图控制器来执行此操作。

否则,在这样的代码中设置它:

self.tableView.delegate = self;
self.tableView.datasource = self;
于 2012-04-18T00:44:14.240 回答