`
jimmy_miao
  • 浏览: 10437 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
社区版块
存档分类
最新评论

iphone notification results in “unrecognized selector sent to instance

    博客分类:
  • ios
 
阅读更多

 

- (void)refresh:(id)sender{
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(refreshFinished:) name:@"refresh.contacts" object:nil];
}

-(void)refreshFinished{
    
}

 

 

出错

 

'NSInvalidArgumentException', reason: '-[ContactsViewController refreshFinished:]: unrecognized selector sent to instance 0xe65ccc0'

 

解决:

 

@selector(refreshFinished:) 去除":"即可

 

 如果refreshFinished需要传参数,就需要加入":"

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics