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

 


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
1137 Develop [ios] VIN Scanner (VIN barcode) 스캐너 file hooni 2017.09.16 638
1136 Develop [ios] SBCampanion App 초안 file hooni 2015.09.16 647
1135 Database [mysql] MySql DB/테이블 사이즈 확인을 위한 쿼리 hooni 2019.11.22 650
1134 Develop [ios] WWDC 2015 샘플 소스 코드 통합파일 hooni 2015.07.20 653
» Develop [ios] NSNotificationCenter 초간단 사용 예~ ㅋㄷ hooni 2015.06.26 654
1132 Database [mysql] MySQL 데이터베이스 추가 및 사용자 추가 hooni 2019.11.22 655
1131 Develop [ios] Touch ID 적용 샘플 코드 (예제) file hooni 2015.02.23 657
1130 Develop [ios] 여러 버전의 Xcode 사용하기 hooni 2022.05.28 658
1129 Develop [swift] 실행시간 측정하기 hooni 2021.09.14 665
1128 Develop [js] Text 값을 클립보드에 복사하기 hooni 2020.10.10 669
1127 Develop [matlab] 정보은닉 스테가노그래피(Steganography) 수업 file hooni 2016.10.03 672
1126 Develop Aspect Oriented Programming in Objective-C hooni 2015.05.18 674
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 98 Next
/ 98