| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
dw2d
10年前发布

iOS视图翻页过渡效果

CGContextRef context = UIGraphicsGetCurrentContext();   [UIView beginAnimations:nil context:context];  [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];   [UIView setAnimationDuration:1.0];  // Apply the animation to the backdrop  [UIView setAnimationTransition:       UIViewAnimationTransitionCurlUp      forView:myView cache:YES];  // Exchange the two foreground views   [myView exchangeSubviewAtIndex:0      withSubviewAtIndex:1];   [UIView commitAnimations];