My table has about 5 items. The table, which is created through IB, appears at the top of view.. How would I center the UItableView such that it appears lower (example: https://i.stack.imgur.com/G9QoS.png)
Thanks
Edit:
Answer is to modify the frame and assign it a CGRect in viewDidAppear method
self.menuitems.frame=CGRectMake(self.menuitems.frame.origin.x,200.0,self.menuitems.frame.size.width,self.menuitems.frame.size.height);
Thanks to AAAAAAAAA and slev
For better way you can directly modify the frame of the tableView.
like