码迷,mamicode.com
首页 > 其他好文 > 详细

点击放大图片

时间:2014-11-06 09:20:09      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:io   color   ar   for   on   cti   ad   size   tt   

//创建button遮挡
UIButton *cover = [[UIButton alloc]initWithFrame:self.view.frame];
[cover setBackgroundColor:[UIColor blackColor]];
cover.alpha = 0;
[self.view addSubview:cover];
[cover addTarget:self action:@selector(smallImg) forControlEvents:UIControlEventTouchUpInside];
self.cover = cover;

//image提前
[self.view bringSubviewToFront:self.iconBtn];
//改变frame
[UIView animateWithDuration:0.25 animations:^{
CGFloat w = self.view.frame.size.width;
CGFloat y = (self.view.frame.size.height - w) * 0.5;
self.iconBtn.frame = CGRectMake(0, y, w, w);
cover.alpha = 0.7;
}];

点击放大图片

标签:io   color   ar   for   on   cti   ad   size   tt   

原文地址:http://www.cnblogs.com/yangmx/p/4077827.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!