0
通過我的搜索,我一直無法找到我的答案。表視圖單元格像筆記應用程序
基本上我有一個像視圖控制器的基本筆記。我希望效果如同筆記,其中第一行是音符的標題,其餘的正文在副標題尾部。
我怎麼把它設置:
NSString *note = nil;
if (tableView == self.tableView) {
note = [noteArray objectAtIndex:indexPath.row];
}
NSString *date = [dateArray objectAtIndex:indexPath.row];
NSInteger charnum = [note length];
if (charnum >= 22) {
cell.textLabel.text = [[note substringToIndex:18] stringByAppendingString:@"..."];
}
else{
cell.textLabel.text = note;
}
[cell.detailTextLabel setText:[NSString stringWithFormat:@"%@ - %@", date, [note substringFromIndex:18]]];
[cell.detailTextLabel setNumberOfLines:1];
現在它讀取到18個字符,然後... ...和字幕把它撿起其餘部分。
我該如何設置標題/標題,然後爲此設置正文?