道歉,如果这是一个简单的问题,但谷歌搜索无法帮助我。 我打算在Table View中显示3个数据数组,每个数组都在Table View的不同部分。
任何人都可以为我提供一个好的教程或示例代码的链接,可以帮助我解决这个问题吗?
如果这是一个简单的问题和答案,我再次道歉,但我是Xcode的新手,并为我的第一个认真的项目工作。
谢谢!
答案 0 :(得分:8)
在TableViewController实现中:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 3;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [[self getDataArray:section]count];//implement getDataArray
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
NSObject *data = [[self getDataArray:indexPath.section]objectAt:indexPath.row];//implement getDataArray
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
//add Code to populate cell with data
}
return cell;
}
可能实施的其他方法:
- (UIView *)tableView: (UITableView *)tableView viewForHeaderInSection: (NSInteger)section
- (CGFloat)tableView:(UITableView *)aTableView heightForHeaderInSection:(NSInteger)section