Я пытаюсь обновить UIBarButtonItem
оттенок цвета из контроллера вида, но ничего не изменилось.Разве мы не можем получить доступ к UIBarButtonItem
в контроллере вида, используя self.navigationItem.rightBarButtonItem
?
[UIView animateWithDuration:.8 delay:0.5 options:UIViewAnimationOptionAllowUserInteraction animations:^ {
//button.alpha = .01; //don't animate alpha to 0, otherwise you won't be able to interact with it
self.navigationItem.rightBarButtonItem.tintColor = [UIColor whiteColor];
} completion:^(BOOL finished) {
self.navigationItem.rightBarButtonItem.tintColor = [UIColor whiteColor];
}];