您的位置:首页 > 移动开发 > IOS开发

iOS界面淡进淡出的效果

2015-12-28 11:52 387 查看
- (void) showView

{

CGContextRef context =
UIGraphicsGetCurrentContext();

[UIView
beginAnimations:nil
context:context];

[UIView
setAnimationCurve:UIViewAnimationCurveEaseInOut];

[UIView
setAnimationDuration:3.0];

[[self.viewmy
viewWithTag:0]
setAlpha:0.0f];//淡出

// [[self.viewmy viewWithTag:0] setAlpha:1.0f];//淡进

[UIView
commitAnimations];

}

转载请注明出处:http://blog.csdn.net/sevenquan
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: