什么是自我>财产?

时间:2015-02-12 09:23:37

标签: ios objective-c iphone

我熟悉iOS / Objective C.现在我看到人们在某些情况下使用self->property。它与self.property有何不同?实际需要是什么?我用Google搜索,没有回答。很好奇。

1 个答案:

答案 0 :(得分:5)

self->property_property相同,这意味着它直接访问ivar。

另一方面,

self.property调用setter / getter。