我有4個圖像。我想在UIView中逐個添加圖像。 請給我任何想法。如何在UIView中添加圖像數組。如何將圖像添加到UIView
2
A
回答
6
它不是從你的問題不清楚,但我猜你婉由一個一段時間的延遲後,顯示的圖像在你看來一個......如果你願意,你麪包車
[self performSelector:@selector(callFunction) withObject:nil afterDelay:0 ];
[self performSelector:@selector(callFunction2) withObject:nil afterDelay:k_AnimateTime ];
[self performSelector:@selector(callFunction3) withObject:nil afterDelay:2*k_AnimateTime ];
得到它是什麼
的功能
imageview = [[[UIImageView alloc] initWithFrame:CGRectMake(x,y,w,h)]autorelease];
imageview.image = [[UIImage imageNamed: [NSString stringWithString:name]]autorelease];
[self.view addSubview:imageview];
imageview.frame = CGRectMake(imageview.frame.origin.x, (imageview.frame.origin.y), imageview.frame.size.width, imageview.frame.size.height);
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDelegate:self];
//[UIView setAnimationWillStartSelector:@selector(Transform2)];
[UIView setAnimationDuration:k_AnimateTime];
[UIView setAnimationBeginsFromCurrentState:YES];
//[UIView setAnimationDidStopSelector:@selector(increaseCount)];
imageview.frame = CGRectMake(imageview.frame.origin.x - Ex, (imageview.frame.origin.y - Ey), imageview.frame.size.width, imageview.frame.size.height);
[UIView commitAnimations];
[self.view addSubview:imageview];
}
相關問題
- 1. 如何將圖像添加到位圖
- 2. 如何將圖像添加到視圖
- 3. 如何將UIview添加到SpriteKit項目?
- 4. 如何將UITableView添加到UIView中?
- 5. 如何將UISearchDisplayController添加到UIView?
- 6. Monotouch:如何將UIView添加到DialogViewController
- 7. 如何將UIView添加到MKMap?
- 8. 如何將uiview作爲子視圖添加到現有視圖
- 9. 如何將圖像添加到JButton
- 10. 如何將圖像添加到ToolStripMenuItem
- 11. 如何將圖像添加到sqlite ListView?
- 12. 如何將空圖像添加到表
- 13. 如何將圖像添加到UIBarButtonItem?
- 14. 如何將圖像添加到標籤?
- 15. 如何將圖像添加到UIAlertView?
- 16. 如何將圖像值添加到h:commandlink?
- 17. 如何將文字添加到圖像
- 18. 如何將圖像添加到數組?
- 19. 如何將圖像添加到UITabbar?
- 20. 如何將圖像添加到比例?
- 21. Java:如何將圖像添加到Jlabel?
- 22. 如何將圖像添加到TreeView.Tag?
- 23. 如何將圖像添加到TextView中
- 24. 如何將圖像添加到畫布
- 25. 如何將圖像添加到ListView?
- 26. 如何將圖像添加到Tabhost
- 27. 如何將圖像添加到按鈕?
- 28. 如何將圖像添加到cloud9?
- 29. 將MPMoviePlayerController的視圖添加到UIView
- 30. 你會如何添加大量的圖像到UIview?
你想爲這些圖像設置動畫? – 2011-04-04 06:49:23
是我想動畫這個圖像數組一個接一個 – avinash 2011-04-04 06:56:11
我想在每個圖像上添加Ken Burns效果 – avinash 2011-04-04 07:00:37