Writing the code below without dot notation, do I have this right?
在没有点表示法的情况下编写下面的代码,我有这个吗?
from:
从:
if(self.yellowViewController.view.superview == nil) {
}
to:
至:
if([[[self yellowViewController] view] superview] == nil) {
}
1 个解决方案
#1
2
yes, it's the same.
是的,它是一样的。
#1
2
yes, it's the same.
是的,它是一样的。