1. 시리로 들어가거나 홈버튼을 눌렀을 때
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(siriWillApear:) name:UIApplicationWillResignActiveNotification object:nil];
2. 시리에서 돌아오거나 메인화면에서 앱으로 다시 돌아올 때
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(siriWillDisAppear:) name:UIApplicationDidBecomeActiveNotification object:nil];
3. 위에서 selector로 지정해준 함수 작성하기
#pragma mark - siri notification
-(void) siriWillApear : (NSNotification*) notification
{
NSLog(@"siriWillApear");
//할일 작성
}
-(void) siriWillDisAppear : (NSNotification*) notification
{
NSLog(@"siriWillDisAppear");
//할일 작성
}
'프로그래밍 > iOS' 카테고리의 다른 글
[ios] 디버그 (0) | 2015.04.09 |
---|---|
[ios] sizeWithFont: constrainedToSize: lineBreakMode: 함수 deprecated (0) | 2015.04.09 |
[ios] 현재시간 가져오기, NSString 파일로 저장 (0) | 2015.04.09 |
[ios] opencv Canny 사용 (0) | 2015.04.09 |
[ios] 네이버 맵 테스트 주소->위,경도/ 위경도->주소 (0) | 2015.04.09 |