iOS---NSNotification 알림
989 단어 iOS 집계
NSNotification 단순 사용:알림 보 내기
[[NSNotificationCenter defaultCenter]postNotificationName:@"test" object:nil];
통 지 를 받다
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(test) name:@"test" object:nil];
알림 실행 방법 test
- (void)test{
//
}
하나의 통 지 는 많은 감청 자가 있 을 수 있 으 며,이 감청 자 들 이 생명 주기 내 에 있 는 한 대응 하 는 방법 에 응 할 수 있다 는 것 이다.