Developer/iOS

[iOS]홈에서 돌아왔을때, 함수 실행하기

블로blow 2015. 10. 26. 17:52
728x90

iOS ViewController가 홈버튼에서 돌아올때, 어떠한 메소드가 실행되길 원한다면

아래와 같이 선언을 해두면 된다.



    [[NSNotificationCenter defaultCenter]addObserver:self

                                            selector:@selector(yourMethod)

                                                name:UIApplicationDidBecomeActiveNotification

                                              object:nil];



참고 : http://stackoverflow.com/questions/11928126/how-can-i-use-applicationdidbecomeactive-in-uiviewcontroller/11928261#11928261

728x90