汤姆猫程序(UIImageView动画)

汤姆猫程序(UIImageView动画)_第1张图片

/** 这是一只显示图片的猫 */
@property (weak, nonatomic) IBOutlet UIImageView *tom;

@end

@implementation MJViewController
/** 播放动画 */
- (void)runAnimationWithCount:(int)count name:(NSString *)name
{
    if (self.tom.isAnimating) return;
    
    // 1.加载所有的动画图片
    NSMutableArray *images = [NSMutableArray array];
    
    for (int i = 0; i

链接: http://pan.baidu.com/s/1c0jQP4c 密码: f864

你可能感兴趣的:(常用功能代码)