我尝试将动画图像设置为 UILabel 背景。我的标签从点 (x=0 y260 移动到 x=480 y=260) 我想在动画期间添加 UIImage。所以我尝试这样
UIImageView *myimg=[[UIImageView alloc]init];
myimg.animationImages =[NSArray arrayWithObjects:
[UIImage imageNamed:@"1ANI.png"],
[UIImage imageNamed:@"2ANI.png"],
[UIImage imageNamed:@"3ANI.png"],nil];
myimg.animationDuration = 1.5;
myimg.animationRepeatCount = 0;
[myimg startAnimating];
[lbl1 addSubview:myimg];
[myimg release];
我像这样使用单个 UIImage 设置 UILabel 背景
UIImage *image=[UIImage imageNamed:@"1ANI.png"];
lbl2.backgroundColor = [UIColor colorWithPatternImage:image];
单个图像代码有效,但是当我尝试使用动画图像实现它(如上面我的代码显示)然后它不起作用有人可以指导我如何将动画图像设置为 UILabel Background.Thanx