Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UITableViewCell Space between Title and Subtitle -iOS

How can I increase the space between the title and subtitle in UITableViewCell?

enter image description here

like image 241
user1526474 Avatar asked Aug 10 '13 02:08

user1526474


1 Answers

subclass UITableViewCell to create a custom cell. Here is a great way to do this. It's simple and will also allow you future potential in making your cells look the way you want them to. The other nice thing about it is that each cell is generic, so you only have to create one customized class.

like image 116
luca590 Avatar answered Oct 07 '22 17:10

luca590