I have added a BarButton item to the left of the nav.bar through Interface Builder and in the code I want this only to show in my table view\'s edi
BarButton
nav.bar
This solution work for me
UIView *myView = [[UIView alloc] initWithFrame: CGRectMake(0, 0, 300, 30)]; UIBarButtonItem *btnL = [[UIBarButtonItem alloc]initWithCustomView:myView]; self.navigationItem.leftBarButtonItem = btnL;