Reputation: 776
Here I'm using the default UITableViewCell & the thing I don't like is that the detailedText is too close to the textLabel so I wanted to add some spacing between them, but I cannot find how to do that. Any suggestsions?
Upvotes: 1
Views: 482
Reputation: 6392
Override this below delegate method.
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
Upvotes: 1