0
A
回答
1
您必須創建一個UIButton並將其添加爲UIView的子視圖(例如,如果視圖鏈接到UIViewController,則在viewDidLoad方法中)。
UIButton *showButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
showButton.frame = CGRectMake(500, 20, 150, 44); // hardcoded frame, not quite elegant but works if you know the dimension of your superview
[showButton setTitle:@"Show Categories" forState:UIControlStateNormal];
// add target and actions
[showButton addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchUpInside];
// add to a superview, your parent view
[superView addSubview:showButton];
然後添加一個方法,稱爲buttonClicked:接受一個ID參數(通常是發件人,showButton在這種情況下)。
-(void)buttonClicked:(id)sender
{
// visualize categories
}
形象化的類別,你可以按照兩種不同的方式:
- 呈現UIPopoverController(僅適用於iPad設備)
- 顯示一個模態控制器呈現一個UITableViewController(包括iPad和裏面的UITableViewController iPhone設備)。
UITableViewController允許你有一個類別列表,然後選擇其中的一個。
P.S.檢查XCode中的代碼是因爲我手寫的(沒有XCode)
+0
thanx flex,單元格視圖的想法如何,其中單個行將可見並單擊該行將顯示隱藏行選擇類別?將這項工作.. 我想實現你的建議 – AppDeveloper 2011-12-15 14:44:24
相關問題
- 1. 隱藏JQuery的菜單按鈕,在頭
- 2. 隱藏溢出菜單按鈕
- 3. 切換顯示/隱藏隱藏的菜單按鈕(響應)
- 4. 簡單的按鈕隱藏
- 5. 帶有隱藏div的滑動菜單
- 6. 隱藏iPhone中的rightNavigationBar按鈕項
- 7. 帶代碼隱藏圓角的按鈕
- 8. 帶jQuery的隱藏/關閉按鈕
- 9. 帶按鈕的角度隱藏
- 10. 單擊按鈕時隱藏/顯示選項菜單
- 11. 單擊按鈕和側面菜單從隱藏中滑出
- 12. 當用戶在按鈕外部單擊時隱藏菜單?
- 13. 隱藏和顯示單個菜單按鈕
- 14. 隱藏和動畫顯示按鈕,iphone
- 15. iPhone - UINavigationItem - 隱藏返回按鈕
- 16. 隱藏按鈕
- 17. 隱藏按鈕
- 18. 帶滾動條隱藏下拉菜單的邊欄菜單
- 19. 隱藏單選按鈕圖標,但不隱藏單選按鈕圖標
- 20. iPhone:是否可以隱藏和取消隱藏UIACtionSheet按鈕?
- 21. 使用jquery隱藏和顯示相同的按鈕菜單
- 22. 用pywinauto控制按鈕後面的隱藏菜單
- 23. 如何隱藏Extjs按鈕中的菜單箭頭
- 24. 可能隱藏ICS上的選項菜單按鈕?
- 25. 隱藏或禁用下拉列表菜單按鈕。 JavaScript的jQuery。
- 26. 我如何隱藏一個活動的菜單按鈕
- 27. Magento:我如何隱藏導航菜單中的主頁按鈕
- 28. 如何在打印時隱藏我的按鈕菜單?
- 29. Android - 如何隱藏操作欄中的菜單按鈕
- 30. 單擊單選按鈕,隱藏div
你想達到這樣的目的嗎? http://cocoacontrols.com/platforms/ios/controls/camera-flash-toggle – victorash 2011-12-15 13:41:53