is there any possibility of passing some another view instead of the self .??
self.tableViewControl.dataSource =self; self.tableViewControl.delegate=self;
i tried this :
thirdView *tv=[[thirdView alloc]init];
self.tableViewControl.dataSource =tv;
self.tableViewControl.delegate=tv;
and i have put the cellForRowAtIndexPath and all those reqired function in thirdView.m file but the app crashes .
iam a newbie to ios .