首页 > 学院 > 开发设计 > 正文

小知识

2019-11-06 09:37:10
字体:
来源:转载
供稿:网友
如果给

UIImageView 上面放一个button(或者其他的控件,需要添加手势或者点击事件)时,如果点击的事件不触发时

 我们需要把UIImageView与用户的交互打开 

例如:

    UIImageView * Image = [[UIImageViewalloc]initWithFrame:CGRectMake(0,0,ScreenWidth, 215 *FitHeight)];

    Image.image = [UIImageimageNamed:@"userbackground@2x"];

    //imageView打开用户交互

    Image.userInteractionEnabled = YES;

    [self.viewaddSubview:Image];

 //跳过按钮

    UIButton *  SkipButton = [[UIButtonalloc]initWithFrame:CGRectMake(ScreenWidth - 70 * FitWidth,25 * FitHeight,50 * FitWidth,50 * FitHeight)];

    [SkipButton setTitle:@"跳过"forState:UIControlStateNormal];

    [SkipButton setTintColor:littleLabelColor];

    SkipButton.titleLabel.font =littleLabelFont;

    [SkipButton addTarget:selfaction:@selector(SkipButtonAction)forControlEvents:UIControlEventTouchUpInside];

    [BackgroundPicture addSubview:SkipButton];

#PRagma mark 跳过的点击事件

-(void)SkipButtonAction{

    [self.navigationControllerpopViewControllerAnimated:YES];

    

}


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表