I am getting error when pushing a viewcontroller from another viewcontroller in ios.I have used viewwillappear in secondviewcontroller like this
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
self.navigationController.navigationBarHidden = NO;
[self.navigationController.navigationBar setTintColor:[UIColor blackColor]];
self.navigationItem.title=@"Preview";
}
The error may be due to this or some other one.can anyone give suggestion