Contents

조회 수 654 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

Notification 날릴 때,

//Dictionary 만들어서 사용할 경우..
NSDictionary *infoData = [NSDictionary
    dictionaryWithObjectsAndKeys:missionIdString, @"missionId",
                          winYNString, @"winYNString",
                          str1String, @"str1String",
                          str2String, @"str2String",
                          callbackString, @"callbackString",
                          nil];

[[NSNotificationCenter defaultCenter]
    postNotificationName:@"NotificationLoadedBenefitView"
    object:nil userInfo:infoData];


// 또는 한번에.. ㅋㄷ
[[NSNotificationCenter defaultCenter]
    postNotificationName:@"NotificationLoadedBenefitView"
    object:nil userInfo:@{@"missionId":missionIdString,
                            @"winYNString": winYNString,
                            @"str1String": str1String,
                            @"str2String": str2String,
                            @"callbackString": callbackString}];

 

Notification 받는 방법과 처리하는 메소드(selector)

// Notification 처리 메소드
- (void)updateBenefitView:(NSNotification *)notification
{
    self.isWithCallback = YES;
    [self viewMissionResult:notification];
    
    NSDictionary *dict = [notification userInfo];
    NSString *callbackString = [dict objectForKey:@"callbackString"];

    [self performSelector:@selector(execCallback:)
        withObject:callbackString afterDelay:1.0];
}

// Notification 옵저버
- (void)viewDidLoad
{
    [[NSNotificationCenter defaultCenter]
        addObserver:self selector:@selector(updateBenefitView:)
        name:@"NotificationLoadedBenefitView" object:nil];
}

// Notification 제거
- (void)dealloc
{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}

 


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
45 Develop [android] ArrayAdapter를 이용하여 출력하기 hooni 2013.04.23 47339
44 Develop [android]개발 가이드 및 한글화 문서 file hooni 2013.04.23 47516
43 System/OS [linux] Masquerade 가상 ip분할기법 hooni 2003.04.23 47936
42 System/OS HTTP 프로토콜 (브라우저와 웹서버 간의 통신) hooni 2003.04.23 48250
41 System/OS [linux] CentOS 6.x Cati 설치 (yum) hooni 2014.01.17 48594
40 System/OS [linux] 우분투 APM + phpmyadmin 설치 hooni 2013.10.07 49323
39 System/OS [windows] 98/ME 속도 빠르게 튜닝(부팅,메모리,레지스터) hooni 2003.04.23 50443
38 PPT [Android] 제스처 자료.. file hooni 2013.05.28 51072
37 Develop [android] GCM 사용하기 1 (GCM 서비스 신청하기) file hooni 2013.07.06 51355
36 System/OS [linux] 아파치설치/설정 - 알리어싱(aliasing) hooni 2003.04.23 51368
35 Develop [vb] 비쥬얼 베이직으로.. hooni 2003.04.23 52997
34 Develop [iphone] view에 대한 조사 ㅡ,.ㅡ; file hooni 2013.04.23 54071
Board Pagination Prev 1 ... 89 90 91 92 93 94 95 96 97 98 Next
/ 98