美文网首页iOS 控件
UIView逐渐变亮然后消失,动画

UIView逐渐变亮然后消失,动画

作者: wodeph | 来源:发表于2017-06-03 17:29 被阅读9次

    imaged= [[UIImageView   alloc]   initWithFrame:CGRectMake(scrrenW*0.36,self.view.center.y-scrrenW*0.15,scrrenW*0.28,scrrenW*0.28)];

    imaged.image= [UIImage    imageNamed:@"logo2"];

    [self.view  addSubview:imaged];

    imaged.alpha=0;

    [UIView      animateWithDuration:4.f   animations:^{

    imaged.alpha=1;

    imaged.Hidden=YES;

    }];

    注:不喜勿喷!!!

    相关文章

      网友评论

        本文标题: UIView逐渐变亮然后消失,动画

        本文链接:https://www.haomeiwen.com/subject/tdrmfxtx.html