tags:

views:

27

answers:

1

I have one UITabelView. UITabelView *tabelView ; [tabelView reloadData];

but this reloaddata function is not calling cellForRowAtIndexpath method and numberOfRowsInSection method why?

A: 

Try

[self.tabelView reloadData];
Warrior