如果我有一个像“ Help, Support and More
”这样的字符串,NSArray
它是它的内容,UITableView
它在启动时崩溃。如果我在“”之后删除空格,,
则没有问题。
有什么解决办法吗?
这崩溃了:
cell.textLabel.text = @"Help, Support and More";
这有效:
cell.textLabel.text = @"Help,Support and More";
这是更多代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
//cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
// Configure the cell.
NSLog(@"%@", [[sportstypes objectAtIndex: [indexPath row]] title]);
cell.textLabel.text = @"Tes t:, ,,,,,";
//cell.textLabel.text = @"Blubber";
return cell;
}
修复:Xcode 4.6.2 应用程序在每秒钟运行一次时崩溃 感谢 ice_2