简要咨询咨询QQ网站导航网站搜索手机站点联系我们设为首页加入收藏 

ios4下实现uiview动画结束后调用

来源:易贤网   阅读:962 次  日期:2015-02-03 14:29:44

温馨提示:易贤网小编为您整理了“ios4下实现uiview动画结束后调用”,方便广大网友查阅!

在写代码时,发现原来3.1.3下经常用的uiview动画结束后调用事件的方法居然不起作用了,摸索了一下,发现ios4下对uivew的animation处理已经有新的方式了,和大家分享一下:

代码功能:在myview向下移出屏幕的动画结束后,触发事件再将myview移除掉。

ios4以前的用法:

[uiview beginanimations:@view remove context:nil];

uiview setanimationdelegate:self];

[uiview setanimationdidstopselector:@selector(animationfinish:animationid:finished:context:)];

[uiview setanimationduration:0.3f];

[uiview setanimationcurve:uiviewanimationcurvelinear];

myview.center = cgpointmake(myview.center.x, myview.center.y+480.0);

uiview commitanimations];

- (void)animationfinish:(nsstring *)animationid finished:(nsnumber *)finished context:(void *)context {

if (animationid == @view remove) {

[myview removefromsuperview];

}

}

xcode的document已经明确说了setanimationdidstopselector :”use of this method is discouraged in iphone os 4.0 and later. you should use the block-based animation methods instead.“,看来这种方法是行不通了,反正在我的模拟器上是不行了,以下是ios4中的实现方法:

[uiview animatewithduration:0.3 delay:0 options:uiviewanimationoptioncurvelinear

animations:^{

settingview.center = cgpointmake(myview.center.x, myview.center.y+480.0);

}

completion:^(bool finished){

if (finished){

[myview removefromsuperview];

}

}

];

看起来更加简洁方便了,但逻辑似乎没有原来好理解了。

更多信息请查看IT技术专栏

更多信息请查看技术文章
点此处就本文及相关问题在本站进行非正式的简要咨询(便捷快速)】     【点此处查询各地各类考试咨询QQ号码及交流群
上一篇:ipad/iphone 开发中的布局问题
下一篇:ios简单加载一个网页的方法
易贤网手机网站地址:ios4下实现uiview动画结束后调用
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!