Reputation: 8176
I saw table view of an app and would like to replicate this style, but have no idea of how to do this. Could you guide me how to make tableview show only cell with content like a UITalbeViewStyleGrouped, but with cell style like UITableViewStylePlain.
About custom footer cell like this I'm thinking of if statement in
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
to use special xib for the footer. Is this the right idea ?
Upvotes: 0
Views: 525
Reputation: 10733
It is not that hard, as soon as you get the right places to do the work, and have some support from a graphic designer maybe. This article is about exactly what you want to achieve. Good luck!
Upvotes: 3