我有一个表格视图单元格,用户点击表格单元格然后在我的数组变量中添加多个值我知道如何添加数组但问题是我在数组中添加值时的值
像这样["one","two","three","somthing"]
。
我想删除""
。这是我的代码:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSString * cellValue=nil;
if (tableView==nurseTypeTable) {
cellValue=[arrayNurseType objectAtIndex:indexPath.row];
NSLog(@"%@",cellValue);
[_nurseArray addObject:cellValue];
NSLog(@"%@",_nurseArray);
} else {
cellValue=[arraySpecialities objectAtIndex:indexPath.row];
NSLog(@"%@",cellValue);
[_selectionArray addObject:cellValue];
NSLog(@"%@",_selectionArray);
}
}
[_nurseArray addObject:cellValue];
NSLog(@"%@",_nurseArray);
这是我的数据显示如下
YourNurse[2337:90b] (
" one ",
" two ",
"three"
)
如何在我的退货数据中删除""
?
请帮助我,请分享您的宝贵知识
答案 0 :(得分:0)
正如我在评论中所说,显示双引号让你知道它是一个字符串。
您的值不包含引号。它只是调试区中的显示格式。