我现在正在使用 UITableView,我拥有的是
MyClass.h
@interface MyClass : UIViewController {
}
@property (strong , strong) UILabel *name;
@property (strong , strong) UILabel *add;
和
MyClass.m
-(NSInteger)tableViewUITableView *)atableView numberOfRowsInSectionNSInteger)section{
return 3 ;
}
-(UITableViewCell *)tableViewUITableView *)aTableView cellForRowAtIndexPathNSIndexPath *)indexPath {
static NSString *CellIdentifier = @"cell";
tableCell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier];
...................................................
return tableCell;
}
当我在 numberOfRowsInSection 处设置断点时,它似乎根本没有被执行。
现在让我很困惑。
有遇到过的请指教。
谢谢
Best Answer-推荐答案 strong>
最常见的原因是没有将 View Controller 设置为 TableView 委托(delegate)和数据源。如果它内置在 Storyboard中,您可以通过选择表格上的连接检查器并将这些属性拖到 View Controller 来执行此操作。
否则,在代码中设置如下:
self.tableView.delegate = self;
self.tableView.datasource = self;
关于iphone - 表格 View 不显示数据,iphone,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/10201154/
|