Contents

Views 755 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

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
No. Category Subject Author Date Views
829 Develop [iphone] performSelector:withObject:afterDelay: 에 대한 내용 hooni 2013.04.23 65901
828 Develop [Android] 2010년에 만들었던 세미나 자료. file hooni 2013.05.28 64741
827 Develop [c#] 간단한 IPC 통신 예제 hooni 2013.04.23 63775
826 Develop [vb] 비주얼 베이직 자격증용 ㅎㅎ hooni 2003.04.23 61576
825 Develop [sh] 쉘스크립트 if 비교 연산 hooni 2020.05.26 60964
824 Develop [android] Canvas를 이용해 이미지 확대/축소 하기 hooni 2013.04.23 60794
823 Develop [vb] 비주얼 베이직 141페이지 hooni 2003.04.23 59019
822 Develop [c#] Json 라이브러리 (System.Net.Json.dll) file hooni 2013.04.23 58581
821 Develop [vb] 비주얼 베이직 순위 정렬 루틴 hooni 2003.04.23 58436
820 Develop [vb] 비주얼 베이직 131페이지 hooni 2003.04.23 58159
819 Develop [android] SurfaceView를 이용한 애니메이션 ㅎㅎ file hooni 2013.04.23 57772
818 Develop 레고 NXT 마인드스톰 밸런싱 로봇 ㅎㅎ file hooni 2013.04.23 57766
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 71 Next
/ 71