可能重複:
Difference beetween _ and self. in Objective-C我應該使用self.tableView還是僅使用tableView?
我應該使用self.tableView或只是通過的tableView本身。
在我的代碼我注意到,這兩個
[self.view addSubview:self.tableView];
和
[self.view addSubview:tableView];
都工作。我的tableView添加了IB,並設置了委託和數據源和出口。
感謝
thai bhai thai avu mare pn 1 var thayu hatu :( – 2012-12-13 12:09:42
當你做self.tableView時,幕後發生的事情是[self getTableView]被調用,所以儘管99%的時間,你會得到你想要什麼,有些情況下,getProperty implmentation也可以做一些額外的事情,它基本上是訪問一個屬性和一個變量的區別。 – Srikanth