Reputation: 9
When I launch the app, a VC, that associated with 0 number Cell in Table View, appears. How can I change it to 3rd VC for example?
Upvotes: 0
Views: 76
Reputation: 31
MainVC.m override the following in MainVC.m
(NSIndexPath *)initialIndexPathForRightMenu;
use : ( if using left)
- (NSIndexPath *)initialIndexPathForLeftMenu
{
return [NSIndexPath indexPathForRow:2 inSection:0];
}
Upvotes: 0