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];
}

 


?

  1. [ios] NSNotificationCenter 초간단 사용 예~ ㅋㄷ

  2. [ios] WWDC 2015 샘플 소스 코드 통합파일

  3. [ios] Touch ID 적용 샘플 코드 (예제)

  4. [ios] 여러 버전의 Xcode 사용하기

  5. [swift] 실행시간 측정하기

  6. [js] Text 값을 클립보드에 복사하기

  7. Aspect Oriented Programming in Objective-C

  8. [matlab] 정보은닉 스테가노그래피(Steganography) 수업

  9. 정리할 자료.

  10. [android] Android N requires the IDE to be running with Java 1.8 or later 오류

  11. [ios] 비디오,네트워크,소셜로그인 테스트

  12. [Javascript][Ajax] 자바스크립트 강의 산출물

Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 71 Next
/ 71