我已经在应用程序的多个版本中使用了这个简单的代码,并且在 iOS 6 之前,字符串比较已经起作用,但现在它失败了 - 为什么?
if(selectedCell.textLabel.text==@"Font"){
NSLog(@"going to dofontpicker");
[self doFontPicker];
}else if(selectedCell.textLabel.text==@"Color"){
NSLog(@"going to do colorpicker");
[self doColorPicker];
}