我想創建背景像http://disqus.com/繼續的背景,但我不能拿我的代碼是這樣創建於x軸連續型的UIImage動畫
continuesBackground =[[UIImageView alloc]initWithImage:[UIImage imageNamed:@"pattern"]];
continuesBackground.frame=CGRectMake(0, 56, 320, 102);
continuesBackground.layer.zPosition=100;
[UIView animateWithDuration:5.0
delay:0.0
options:UIViewAnimationOptionCurveLinear
animations:^{
continuesBackground.transform = CGAffineTransformMakeTranslation(0, 200); }
completion:^(BOOL finish) {
continuesBackground.transform = CGAffineTransformMakeTranslation(200, 0);
}];
嘗試後如何做的?我需要nstimer嗎?
不要使用的NSTimer。 – 2012-11-10 05:43:26
是嗎?任何想法來創建它? – Netra
你提供的代碼是如何工作的?你遇到的錯誤是什麼? – 2012-11-10 05:52:02