IOS 5 XCODE 4.3.2 Can dynamic prototyped lookup tables be used?

I use a storyboard and UITableViewwith dynamically prototyped cells. Now I tried to group it, but every tutorial I can find groups only on static cells. When I select static, I see "sections", but not dynamic. Is there an easy way to group my dynamic cells?

Thank,

Rob

+3
source share
1 answer

You need to set the style Groupedin the table view.

, , . , Grouped.

, , , , .

UITableView, ( UITableViewController, )

- (NSString*)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    // set title of section here  
}

iOS 5 XCODE 4.3.2 ?

+2

All Articles