2013년 9월 8일 일요일

브로드 캐스팅 상용 방법





#define kShowLoginActionNotification @"kShowLoginActionNotification"



- (void)viewDidLoad
{
    [super viewDidLoad];


[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(showLoginPage:) name:kShowLoginActionNotification object:nil];

}



- (void)dealloc {

    [[NSNotificationCenter defaultCenter] removeObserver:self name:kShowLoginActionNotification object:nil];
}



- (void) showLoginPage:(NSNotification *) notification
{
  //실재 기능 구현
}



댓글 없음:

댓글 쓰기