简体   繁体   中英

iPhone UITableView with Multiple Sections

Apologies if this is a simple question but googling hasn't been able to help me. I am planning to display 3 arrays of data in a Table View that has each array in a different section in the Table View.

Can any one provide me with a link to a good tutorial or sample code that could help me with this?

Once again I apologize if this is a simple question and answer but I am a newbie to Xcode and working on my first serious project for it.

Thanks!

In your TableViewController implement:

- (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;
}

Other methods to probably implement:

- (UIView *)tableView: (UITableView *)tableView viewForHeaderInSection: (NSInteger)section
- (CGFloat)tableView:(UITableView *)aTableView heightForHeaderInSection:(NSInteger)section

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM