标题说明了一切。是否可以在不使用“。”的情况下编写此代码。符号?
if ([aTableColumn.identifier isEqualToString:@"code"]){
some code here
}
答案 0 :(得分:2)
确定
[aTableColumn identifier]
所以
if ([[aTableColumn identifier] isEqualToString:@"code"]){
some code here
}
点语法只是语法糖,对于objC调用来说绝对不是必需的