Contents

조회 수 664 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
25 Develop [Xcode] 디버깅 옵션 file hooni 2013.04.23 57202
24 Develop [android] SurfaceView를 이용한 애니메이션 ㅎㅎ file hooni 2013.04.23 57715
23 Develop 레고 NXT 마인드스톰 밸런싱 로봇 ㅎㅎ file hooni 2013.04.23 57722
22 Develop [vb] 비주얼 베이직 131페이지 hooni 2003.04.23 58053
21 Develop [vb] 비주얼 베이직 순위 정렬 루틴 hooni 2003.04.23 58332
20 Develop [c#] Json 라이브러리 (System.Net.Json.dll) file hooni 2013.04.23 58545
19 Develop [vb] 비주얼 베이직 141페이지 hooni 2003.04.23 58915
18 Develop [sh] 쉘스크립트 if 비교 연산 hooni 2020.05.26 60717
17 Develop [android] Canvas를 이용해 이미지 확대/축소 하기 hooni 2013.04.23 60752
16 Develop [vb] 비주얼 베이직 자격증용 ㅎㅎ hooni 2003.04.23 61434
15 Develop [c#] 간단한 IPC 통신 예제 hooni 2013.04.23 63737
14 Develop [Android] 2010년에 만들었던 세미나 자료. file hooni 2013.05.28 64666
Board Pagination Prev 1 ... 62 63 64 65 66 67 68 69 70 71 Next
/ 71