1. 노티 보내기
1-1) 데이터 없이 노티만 보내기
[[NSNotificationCenter defaultCenter]postNotificationName:@"notiName" object:nil];
1-2) 노티에 데이터 실어 보내기
[[NSNotificationCenter defaultCenter]postNotificationName:@"notiName" object:nil userInfo:@{보낼 딕셔너리}];
2. 노티 받기
NSNotificationCenter *notiCenter = [NSNotificationCenter defaultCenter];
[notiCenter addObserver:self selector:@selector(notiSelName:) name:@"notiName" object:nil];
-(void)notiSelName:(NSNotification*)noti{
NSDictionary *info = [noti userInfo];
}
'블로그 > 아이폰/iOS' 카테고리의 다른 글
ios 키보드 감추는 코드 (0) | 2014.08.29 |
---|---|
NSDate를 NSString으로, NSString을 NSDate로 변환하는 방법. (0) | 2014.08.29 |
[ios 비동기 처리 방법] 시간이 오래 걸리는 작업 처리법 (0) | 2014.08.29 |
맥용] Color Picker 컬러 픽커 (0) | 2012.02.19 |
아이폰 폰트 정리. (0) | 2012.02.18 |