How can I share tableview between classes?
I actually created a tableview in a view controller (with xib file) and used following steps to make it disappear ...
[tableview retain];
[tableview removedfromsuperview];
According to my project, I created a new view controller (without xib file) and now I want to recall the same tableview which was created in previous view controller. I used something like this
Firstviewcontroller *firstviewcontroller=[[Firstviewcontroller alloc]init];
[self.view addsubview :firstviewcontroller->tableview ];
But it didn't display table view firstviewcontroller.