图片添加点击事件

resizedImageView.userInteractionEnabled = YES;

    UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(photoTapped)];
    [resizedImageView addGestureRecognizer:singleTap];//点击图片事件
    NSLog(@"haha");
    [self.view addSubview:resizedImageView];//加载图片

posted on 2015-07-23 13:29  yucaijiang  阅读(703)  评论(0编辑  收藏  举报

导航