1

我有一个带字幕的表格视图。我想告诉用户一些关于应用程序当前版本的信息。

tableData = [NSArray arrayWithObjects:@"Ver. 0.90", nil]; //App version
tableSubtitles = [NSArray arrayWithObjects:@"First release contains:/n- Create user/n- Login/n- And so on...", nil]; //What the app can do

我的问题是 /n 不起作用。

如果有人知道制作新线的方式,请回答:)

顺便说一句,我是这样展示的:

cell.textLabel.text = [tableData objectAtIndex:indexPath.row];
cell.detailTextLabel.text = [tableSubtitles objectAtIndex:indexPath.row];
4

0 回答 0