ios 动画
1.
// // UIView+Animation.m // UIAnimationSamples // // Created by Ray Wenderlich on 11/15/11. // Copyright (c) 2011 __MyCompanyName__. All rights reserved. // #import "UIView+Animation.h" @implementation UIView (Animation) - (void) moveTo:(CGPoint)destination duration:(float)secs option:(UIViewAnimationOptions)option { [UIView animateWithDuration:secs delay:0.0 options:option animations:^{ self.frame = CGRectMake(destination.x,destination.y, self.frame.size.width, self.frame.size.height); } completion:nil]; }
https://github.com/dakotahp/my-daily-kana

浙公网安备 33010602011771号