标签:
[UIView animateWithDuration:1.0 animations:^{
label.alpha=1.0;
} completion:^(BOOL finished) {
[UIView animateWithDuration:1.0 animations:^{
label.alpha=0.0;
} completion:^(BOOL finished) {
[label removeFromSuperview];
}];
}];
/*
animateWithDuration:持续的时间
animations:^{} :在这个持续的时间内需要完成的事情
animations:^{}:事件完成后进行的操作
*/
标签:
原文地址:http://www.cnblogs.com/wanghengheng/p/4839799.html