我现在正在使用 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设置断点时,它似乎根本没有被执行。现在让我很困惑。有遇到过的请指教。
谢谢