A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

@implementation ViewControl
- (IBAction)bigImage
{
    // 1. 添加蒙板(遮罩)
    UIButton *cover = [[UIButton alloc] initWithFrame:self.view.bounds];
    cover.backgroundColor = [UIColor colorWithWhite:0.0 alpha:0.5];
    [self.view addSubview:cover];
    cover.alpha = 0.0;
   
    [cover addTarget:self action:@selector(smallImage:) forControlEvents:UIControlEventTouchUpInside];
   
   
    // 2. 将图像按钮弄到最前面
    // bringSubviewToFront将子视图前置
    [self.view bringSubviewToFront:self.iconButton];
   
    // 3. 动画放大图像按钮
    CGFloat w = self.view.bounds.size.width;
    CGFloat h = w;
    CGFloat y = (self.view.bounds.size.height - h) * 0.5;
   
    [UIView animateWithDuration:1.0f animations:^{
        self.iconButton.frame = CGRectMake(0, y, w, h);
        cover.alpha = 1.0;
    }];
}

/**
*  小图
*/
- (void)smallImage:(UIButton *)changButton
{
   
    // 动画一但定义,马上开始
    [UIView animateWithDuration:1.0 animations:^{
        // 将图像恢复初始位置
        self.iconButton.frame = CGRectMake(85, 85, 150, 150);
        changButton.alpha = 0.0;
    } completion:^(BOOL finished) {
        // 动画完成之后删除cover
        [changButton removeFromSuperview];
    }];
}

@end



以上,是使用了什么方法?求解,不要笑。。。自学有点费。。。。。。。

4 个回复

倒序浏览
因为     [cover addTarget:self action:@selector(smallImage:) forControlEvents:UIControlEventTouchUpInside];
回复 使用道具 举报
cover注册了一个方法 ,名字就叫做 smallImage:
回复 使用道具 举报
顶顶新人贴
回复 使用道具 举报
66666666666
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马