mailSubscritionTable.separatorColor = [UIColor blueColor];
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 5;
}
but, i get more then se开发者_开发技巧parator here , i want that only 5 separator will shown.
It's super easy:
tableView.tableFooterView = [[[UIView alloc] init] autorelease];
精彩评论