Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

straber

macrumors member
Original poster
Jul 3, 2012
60
0
Hi,

I'm trying to do something similar to the look Apple did with the alarm tab of their Clock app. In that app, as you add alarms, they appear in the Table, but the rest of the table does not get filled with blank table cells, instead you see the background behind the table. Does anyone know how I might be able to accomplish this same design?

Thanks.
 
Try this in your tableviewViewController

Code:
- (void)viewDidLoad
{
//All the rest of the -viewDidLoad code

[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];
}
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.