UITableViewCell Space between Title and Subtitle -iOS

后端 未结 5 1374
[愿得一人]
[愿得一人] 2021-01-12 16:22

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

\"enter

5条回答
  •  独厮守ぢ
    2021-01-12 16:59

    If your row height is greater then the title and subtitle will be vertically middle align.

    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        return 100;
    }
    

提交回复
热议问题