Possible Duplicate:
Difference beetween _ and self. in Objective-C
Should I use self.tableView or just tableView by itself.
In my code I've noticed that both
[self.view addSubview:self.tableView];
and
[self.view addSubview:tableView];
both work. My tableView was added with IB and the delegate and datasource and outlet was set.
thanks