Hello, I've searched every where to see if i can add some spacing between multiple lines within a cell, i found some old posts that said its a property of a font, i looked up apples documentation but wasn't sure if i am using the right term.
is there a way to add some spacing between the lines??
below is my code.
Thanks in advance.
Code:
- (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath {
NSManagedObject *managedObject = [self.fetchedResultsController objectAtIndexPath:indexPath];
cell.textLabel.text = [[managedObject valueForKey:@"text"] description];
[cell.textLabel sizeToFit];
cell.textLabel.numberOfLines = 0;
cell.textLabel.font = [UIFont systemFontOfSize:FONT_SIZE];
}