조회 수 761 추천 수 0 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
729 Develop [c] 문자열 정렬 함수 qsort() hooni 2003.04.23 8276
728 Develop [c] OpenGL 임시로 여기 올림.. hooni 2003.04.23 10350
727 Develop [c] 정수를 2진수로 변환 (재귀,비트연산) file hooni 2003.04.23 7608
726 Develop [c] OpenGL 관측점 이동 hooni 2003.04.23 7646
725 Develop [c] 팩토리얼 서버/클라이언트.. file hooni 2003.04.23 17332
724 Develop [c] 패킷정보출력(경로, 패킷길이, 3hand, sync, ack..) file hooni 2003.04.23 7287
723 Develop [c] 라인수 입력받아 마름모꼴 출력하기.. hooni 2003.04.23 6902
722 Develop [c] 단기과정[01/06] sizeof, 실수표현, 메모리, 연산자 hooni 2003.04.23 6963
721 Develop [c] 단기과정[01/07] 제어문, 피보나치수열 hooni 2003.04.23 7442
720 Develop [c] 단기과정[01/08] 배열, 포인터 hooni 2003.04.23 7269
719 Develop [c] 단기과정[01/08] (다차원 + 배열)포인터, void 포인터 hooni 2003.04.23 7804
718 Develop [c] 단기과정[01/08] 과제.. 파스칼 삼각형 file hooni 2003.04.23 7298
717 Develop [c] 단기과정[01/10] 과제.. swap(any data, ..) file hooni 2003.04.23 6936
716 Develop [c] 단기과정[01/14] 파일 입출력 file hooni 2003.04.23 6863
715 Develop [c] 단기과정[01/14] 피보나치, 파스칼.. 파일입출력 file hooni 2003.04.23 7118
714 Develop [c] 단기과정[01/15] 피보나치, 파스칼.. 링크리스트 file hooni 2003.04.23 7260
Board Pagination Prev 1 ... 6 7 8 9 10 ... 53 Next
/ 53