我正在做how to set a tableview delegate中与此人的代码类似的事情。但是,一个区别是我使用UITableView(以及其他UIView元素)创建了一个nib,并将nib的文件所有者设置为我的自定义类,其定义为
@interface MyCustomView : UIViewConroller <UITableViewDelegate, UITableViewDataSource>
@end
在nib中,我将Table View对象的委托和dataSource设置为文件所有者。当我加载我的视图时,我甚至没有点击
的代码- (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
我还缺少什么?
答案 0 :(得分:0)
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [_myObjArray count];
}
但是我设置在错误的位置填充数组,所以它返回0的数量。因此我没有看到数据!