views:

69

answers:

1

Hello,

I have used navigation controller and 3 screens A,B,C. I have used navigation controller delegate method in A ,where i have reload table data. Now when i m going same in B.But this time Class A delegate and table reload not working,same time Class B delegate and table reload is working. So here how can I reload table in B when that view will appear???

A: 

Hi, Meet

Set the all the 3 tableview 's delegate & datasource property...

using code :

tblView.delegate = self;

tblView.dataSource = self;

Then your problem will be solved...

yakub_moriss