NSNotificationCenter defaultCenter에서 viewWillAppear:
메서드를 호출하는 것이 좋습니다.NSNotificationCenter의 ViewWillAppear를 호출하는 것이 좋습니다
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(viewWillAppear:) name:UIApplicationDidBecomeActiveNotification object:nil];
또는
-(void)setUpInitialization{
// dump code here in ViewWillAppears.
}
전화 메소드 setUpInitialization
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(setUpInitialization) name:UIApplicationDidBecomeActiveNotification object:nil];
직접 viewWillAppear
가 구현하는 좋지 않은 방법입니다 호출하면?
앱이 활성화되면 시스템에서'viewWillAppear :'을 (를) 이미 호출하지 않았습니까? – mattsson
@mattsson 예 앱이 tabbarcontroller에 대해 활성화됩니다. – kiran
그런 다음 알림을 사용하여 다시 전화를 걸 이유가 무엇입니까? – mattsson