我在UITableView中使用了字幕样式作为我的Cell样式,但我需要detailTextLabel
来显示单元格右侧的细节。默认情况下,字幕显示在左侧。我该怎么办?
答案 0 :(得分:3)
查看UITableViewCellStyleValue1或UITableViewCellStyleValue2。
答案 1 :(得分:0)
为了扩展保罗的答案,当你在cellForRowAtIndexPath中初始化你的表格视图时,你需要做这样的事情。
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"Cell"];