码迷,mamicode.com
首页 > 移动开发 > 详细

IOS 执行动画后想要调用某个方法

时间:2015-04-01 15:28:10      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:ios   动画   对象   uiview   

第一种方法:,使用监听

UIView beginAnimations

方法如下:

    [UIView beginAnimations:nil context:nil];
    //代理,监听对象
    [UIView setAnimationDelegate:self];
    //<span style="font-family: Arial, Helvetica, sans-serif;">removeCover 是动画执行完后要调用方法</span>
    [UIView setAnimationDidStopSelector:@selector(removeCover)];
    self.coverBtn.alpha =0.0;
    [UIView commitAnimations];

removeCover:

-(void)removeCover
{
    [self.coverBtn removeFromSuperview];
    self.coverBtn=nil;
}

第二种方法:使用block,   UIView animateWithDuration

    [UIView animateWithDuration:1.0 animations:^{
        self.coverBtn.alpha= 0.0;
        self.iconbtn.frame = self.oldPicFrame;
        
    } completion:^(BOOL finished) {
        [self.coverBtn removeFromSuperview];
        self.coverBtn =nil;
    }];


IOS 执行动画后想要调用某个方法

标签:ios   动画   对象   uiview   

原文地址:http://blog.csdn.net/xuejunling/article/details/44806067

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