码迷,mamicode.com
首页 > 其他好文 > 详细

浇花动画

时间:2014-10-20 22:35:53      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   sp   div   2014   

 

效果图:

bubuko.com,布布扣

切图:

bubuko.com,布布扣

RootViewController.m

 

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    //初始化背景图
    [self initBackGroundView];
    
}
#pragma -mark -functions
//背景图
-(void)initBackGroundView
{
    //
    UIImageView *loadPeopleView = [[UIImageView alloc] initWithFrame:CGRectMake(130, 100, 156, 172)];
    loadPeopleView.tag = 101;
    loadPeopleView.alpha = 1.0f;
    loadPeopleView.backgroundColor=[UIColor clearColor];
    [loadPeopleView setImage:[UIImage imageNamed:@"problem_load.png"]];
    
    //
    UIImageView *loadFlowerView = [[UIImageView alloc] initWithFrame:CGRectMake(70, 200, 62, 75)];
    loadFlowerView.tag = 102;
    loadFlowerView.alpha = 1.0f;
    [loadFlowerView setImage:[UIImage imageNamed:@"problem_load1.png"]];
    
    [self.view addSubview:loadPeopleView];
    [self.view addSubview:loadFlowerView];
    
    timer = [NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(animation:) userInfo:nil repeats:YES];
}
//动画
- (void)animation:(NSTimer *)timer
{
    NSLog(@"-i-%i--",i);
    UIImageView *imageView = (UIImageView *)[self.view viewWithTag:102];
    i++;
    if (i%3 == 0) {
        [imageView setImage:[UIImage imageNamed:@"problem_load1.png"]];
    }else if (i%3 == 1){
        [imageView setImage:[UIImage imageNamed:@"problem_load2.png"]];
    }else{
        [imageView setImage:[UIImage imageNamed:@"problem_load3.png"]];
    }
}

 

浇花动画

标签:style   blog   http   color   io   ar   sp   div   2014   

原文地址:http://www.cnblogs.com/yang-guang-girl/p/4038699.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!