我有NSMutableString
这些信息:
T: Testadata(id:1,title:"Test",subtitle:"test is correct",note:"second test",identifiers:(
这是我的表格实现:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath
*)indexPath
{
static NSString *CellIdentifier = @"TestCell";
TestCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell =[ [[NSBundle mainBundle] loadNibNamed:@"TestCell" owner:nil options:nil]
lastObject];
}
NSArray *array = [server get_test:10 offset:0 sort_by:0 search_for:@""];
NSMutableString *t = [NSMutableString stringWithFormat:@"%@ ", [array
objectAtIndex:indexPath.row]];
cell.testTitle.text = t;
NSLog(@" T :%@ ", t);
return cell;
}
现在我的 t 中有所有 Testdata ,我想显示,只是在我的行中显示标题 我怎么能在我的标题标签中只有我的标题而不是整个 Testdata ?你能帮我完成这个实现吗?