+ -
当前位置:首页 → 问答吧 → [objective c] 点可以用个block代替@selector

[objective c] 点可以用个block代替@selector

时间:2014-07-24

来源:互联网

- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.

UITapGestureRecognizer *customGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:^(UITapGestureRecognizer *)con{
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle"Title"
message"Message"
delegate:nil
cancelButtonTitle"OK"
otherButtonTitles:nil];
[alert show];
}];
[self.view addGestureRecognizer: customGesture ];

作者: 辉辉小天使   发布时间: 2014-07-24

block不可以替代selector,可以在function中写block

作者: kingsizebeast   发布时间: 2014-07-24