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 초간단 사용 예~ ㅋㄷ

    Date2015.06.26 CategoryDevelop Byhooni Views654
    Read More
  2. [ios] WWDC 2015 샘플 소스 코드 통합파일

    Date2015.07.20 CategoryDevelop Byhooni Views655
    Read More
  3. [ios] 여러 버전의 Xcode 사용하기

    Date2022.05.28 CategoryDevelop Byhooni Views660
    Read More
  4. [ios] Touch ID 적용 샘플 코드 (예제)

    Date2015.02.23 CategoryDevelop Byhooni Views661
    Read More
  5. [swift] 실행시간 측정하기

    Date2021.09.14 CategoryDevelop Byhooni Views668
    Read More
  6. [js] Text 값을 클립보드에 복사하기

    Date2020.10.10 CategoryDevelop Byhooni Views671
    Read More
  7. Aspect Oriented Programming in Objective-C

    Date2015.05.18 CategoryDevelop Byhooni Views674
    Read More
  8. [matlab] 정보은닉 스테가노그래피(Steganography) 수업

    Date2016.10.03 CategoryDevelop Byhooni Views676
    Read More
  9. 정리할 자료.

    Date2015.07.02 CategoryDevelop Byhooni Views677
    Read More
  10. [android] Android N requires the IDE to be running with Java 1.8 or later 오류

    Date2016.08.30 CategoryDevelop Byhooni Views680
    Read More
  11. [ios] 비디오,네트워크,소셜로그인 테스트

    Date2017.04.04 CategoryDevelop Byhooni Views680
    Read More
  12. [Javascript][Ajax] 자바스크립트 강의 산출물

    Date2019.10.05 CategoryDevelop Byhooni Views695
    Read More
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 71 Next
/ 71