我需要detailTextLabel在我的UITableView.
所以我在我的CellForRowAtIndexPath
cell.detailTextLabel.numberOfLines = 3;
cell.detailTextLabel.textAlignment = NSTextAlignmentCenter;
在我设置之后,我的 cell.TextLabel.text 位置就像下面的图片一样发生。

我希望该cell.textLabel.文本位于中心,而不是顶部。
我怎样才能做到这一点?