1
A
回答
0
在這裏,我得到了解決方案。
UIImageView* animatedImageView = [[UIImageView alloc] initWithFrame:self.view.bounds];
animatedImageView.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"default1.jpg"],
[UIImage imageNamed:@"default2.jpg"],
[UIImage imageNamed:@"default3.jpg"],
[UIImage imageNamed:@"default4.jpg"],
[UIImage imageNamed:@"default5.jpg"],
[UIImage imageNamed:@"default6.jpg"],
[UIImage imageNamed:@"default7.jpg"],
[UIImage imageNamed:@"default8.jpg"],
[UIImage imageNamed:@"default9.jpg"],
[UIImage imageNamed:@"default10.jpg"],
[UIImage imageNamed:@"default11.jpg"],
[UIImage imageNamed:@"default12.jpg"],
[UIImage imageNamed:@"default13.jpg"],
[UIImage imageNamed:@"default14.jpg"],
[UIImage imageNamed:@"default15.jpg"], nil];
animatedImageView.animationDuration = 3.0f;
animatedImageView.animationRepeatCount = 0;
[animatedImageView startAnimating];
[self.view addSubview: animatedImageView];
1
是的你可以 - 我假設你想要一個動畫GIF?
它和靜態背景是一樣的CSS規則。
body {
background: url(animated.gif);
}
相關問題
- 1. GIF作爲CSS背景圖像
- 2. .gif圖像作爲畫布背景
- 3. GiF作爲JFrame的背景
- 4. 背景圖像作爲固定背景
- 5. 如何將.gif作爲背景圖像顯示?
- 6. 圖像作爲背景div
- 7. SVG作爲背景圖像
- 8. chrome不呈現gif背景圖像
- 9. Chrome動畫GIF背景圖像沒有播放 - 背景大小
- 10. matlab繪圖圖像作爲背景圖
- 11. 跟蹤像素(透明GIF)作爲樣式表中的背景圖像?
- 12. 背景顏色藏漢作爲背景圖像中不工作
- 13. GIF圖像在背景圖像屬性需要停止動畫
- 14. 設置按鈕背景/圖像爲動畫gif
- 15. 透明PNG/GIF雕刻出的背景圖像背後
- 16. 在背景圖像背景圖像
- 17. 上傳後顯示背景爲透明背景的GIF圖像顯示黑色背景?
- 18. Python使用圖像作爲背景(graphics.py)
- 19. 作爲div背景的中心圖像
- 20. 作爲背景的JPanel上的圖像
- 21. 拉伸圖像作爲背景
- 22. 圖像作爲JScrollPane中的背景
- 23. SVG圖像作爲頁面背景xamarin
- 24. LWUIT:圖像作爲表格的背景
- 25. 作爲Android中的背景大圖像
- 26. 形狀背景作爲圖像
- 27. 使用圖像作爲背景畫布
- 28. 獲取多個圖像作爲背景
- 29. Reportlab:添加圖像作爲背景
- 30. SVG作爲背景圖像問題
這看起來不像一個編程問題。 – 2010-07-06 04:48:25
@marcelo 所以,笏你以爲是。 c我的回答...... – iscavengers 2010-07-06 05:01:24
看起來有人想把一些壁紙加載到他們的iPhone上。另一個答案假設完全不同的情況,並且得到了投票(不是我)的事實表明,混淆不是我一個人。 – 2010-07-06 05:11:09