ios - tableView wierd behaviour while pushing in navigation controller -


i having issue while pushing viewcontroller in uinavigationcontroller .

what have , uitabbar , when click on button loads new viewcontroller in uitabbar's uinavigationcontroller .

the last 1 <code>viewcontroller</code> pushing in <code>uitabbar</code>'s navigation controller

i using push ...

 uistoryboard * storyboard = self.storyboard;     loginemailinviteviewcontroller * detail = [storyboard instantiateviewcontrollerwithidentifier:@"loginemailinvite"];      [self.navigationcontroller pushviewcontroller: detail animated: yes]; 

every thing perfect problem occurs in tableview looks wierd there . takes space above starting point if on navigation bar .

enter image description here

please check , me .

thanks

in view did load add following line :

self.automaticallyadjustsscrollviewinsets = no; 

Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

Rendering JButton to get the JCheckBox behavior in a JTable by using images does not update my table -