我想讓我的RootView顯示在桌面上方的UIImage中。我怎麼能做到這一點?在RootView中的UIImageView
1
A
回答
0
您應該使用setBackgroundView方法。
一個小例子:
// my image
UIImage *image = [[[UIImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"my_image" ofType:@"png"]] autorelease];
// an imageView to put the imagen on
UIImageView *imageView = [[[UIImageView alloc] initWithImage:image] autorelease];
// we set the background of the table with the imageView
[myTable setBackgroundView:imageView];
+0
autorelease沒有真正的需要,或者有嗎? backgroundView屬性由retain關鍵字定義,因此您可以在調用setBackgroundView之後保存釋放圖像和圖像視圖。 – hennes 2011-03-09 16:28:52
+0
準確地說,autorelease是沒有必要的。這只是我的許多習慣之一。對不起,如果它讓你迷惑了代碼的主要目的。 – 2011-03-09 16:33:31
相關問題
- 1. 在UINavigationController中切換RootView
- 2. 什麼是rootView?
- 3. 如何在碎片中獲取rootview?
- 4. 獲取RootView的實例中的AppDelegate
- 5. 更新SplitView的TableView(RootView)
- 6. rootview中的多個選項卡
- 7. 如何決定AppDelegate中的rootView
- 8. 如何設置popover中的當前rootview?
- 9. Xamarin.Android中rootView的高度和寬度
- 10. 如何隱藏的TabBar在RootView ChildViewControllers
- 11. UIImageView在UIScrollView中
- 12. 如何檢查我是否在tabbaritem中的viewcontroller的rootview?
- 13. 我有一個錯誤在我rootView
- 14. 如何在RecyclerView上獲取rootView
- 15. SDWebImage的UIImageView +中的WebCache定製的UIImageView
- 16. iPad:在RootView中合併SplitViewController和NavigationController的概念?
- 17. 在分割視圖中更改Rootview(uitableviewcontroller子類)的位置
- 18. 當我在appdelegate中設置Tabbar時,如何設置viewcontroller的rootview?
- 19. 在UIImageView中的長寬比
- 20. NSArray中的UIImageView
- 21. IBOutlet中的UIImageView
- 22. 中的UIImageView
- 23. 的UIImageView在ipad
- 24. 的UIImageView在iPhone
- 25. 如何在UIImageView中保存UIImageView中的UIImage
- 26. 獲取從dataViewController的RootView控制器UIPageViewController
- 27. Android - 從URL添加到rootview的位圖
- 28. 我有關於rootview掛起的問題
- 29. 在UIImageView中重用UIImageView對象通過「setImageWithURL」獲取的UIImageView對象
- 30. 在UIScrollView中集中UIImageView
你說的 「上面」 是什麼意思?你想把圖片放在表格視圖的開頭還是直接放在表格視圖的開頭? – hennes 2011-03-09 16:30:56