图片的放大和缩小的点击响应方法如何实现 麻烦用代码补充下
//海报图片按钮
-(void)button5{
UIButton *button6 = [[UIButton alloc]initWithFrame:CGRectMake(85, 110, 150, 200)];
[button6 setImage:[UIImage imageNamed:@"1"]forState:UIControlStateNormal];
button6.layer.borderColor = [UIColor cyanColor].CGColor;
button6.layer.borderWidth = 3.0;
button6.layer.cornerRadius = 8.0;
[button6 addTarget:self action:@selector(buttonAction3:) forControlEvents:UIControlEventTouchUpInside]; //添加响应方法
[self.view addSubview:button6];
}
-(void)buttonAction3:(UIButton*)bt4{ //点击海报的响应
//添加阴影
UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0,0,320, 568)];
view.backgroundColor = [UIColor blackColor];
view.alpha =0.8;
[self.view addSubview:view];
}
正在回答 回答被采纳积分+1
- 参与学习 1337 人
- 提交作业 712 份
- 解答问题 1878 个
很多人都在疑问没有基础该怎么学习iOS开发?不用担心,本路径采用游戏关卡式的教学模式,并且以经典OC与最新Swift双重结合的教学内容,帮助大家快速掌握两种iOS开发语言基础,去掉“零”标签。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星