为什么我不能取消引用指向对象的指针,或者为什么不能取消引用指向对象的指针?
myClass * object = [[myClass alloc]init];
[*object instanceMethod]; //Like this
[object instanceMethod]; //Instead of this
导致发送消息需要类/对象作为其接收者。
谢谢。
为什么我不能取消引用指向对象的指针,或者为什么不能取消引用指向对象的指针?
myClass * object = [[myClass alloc]init];
[*object instanceMethod]; //Like this
[object instanceMethod]; //Instead of this
导致发送消息需要类/对象作为其接收者。
谢谢。