1
A
回答
1
- 放置在一個視圖控制器與同一幀的兩個視圖,並就它們的隱藏 。當用戶將聯繫人信息切換爲詢問時, 會隱藏另一個視圖,只需更改視圖的隱藏屬性即可。
- 如果這些視圖是UITableView,那麼使用一個帶有不同數據源的UITableView並將其更改爲UITableView委託方法 方法。
1
就在您的按鈕控制器下方,將兩個視圖相互重疊,並且一旦收到的水龍頭顯示一個並隱藏另一個...其實非常簡單,實際上希望這有助於。
0
類似的東西應該工作:
self.contactInfoView = [[UIView alloc]init];//whatever you need
self.enquiryView = [[UIView alloc]init];//same here, do whatever you need
//customize you views
UIButton *contactInfoButton = [UIButton buttonWithType:UIButtonTypeCustom];
UIButton *enquiryButton = [UIButton buttonWithType:UIButtonTypeCustom];
//customize the buttons
[contactInfoButton addTarget:self action:@selector(showContactView) forControlEvents:UIControlEventTouchUpInside];
[enquiryButton addTarget:self action:@selector(showEnquiryView) forControlEvents:UIControlEventTouchUpInside];
,然後進行2種方法來顯示的看法。可以很簡單,如:
-(void)showContactView {
self.enquiryView.hidden = YES;
self.contactInfoView.hidden = NO;
}
希望它可以幫助
相關問題
- 1. 使用兩個視圖與一個UIViewcontroller
- 2. 一個UIViewController爲多個視圖
- 3. 從UIViewController中刪除一個子視圖
- 4. 在UIViewController的一個子視圖
- 5. 把另一個UIViewController的視圖放在一個「主」UIViewController中 - 委託方法
- 6. 建議將UIViewController的視圖添加到另一個UIViewController視圖中?
- 7. 將Coreplot圖形UIViewController添加到另一個UIViewController的視圖
- 8. 在一個自定義的UIViewController包含一個UITableView子視圖
- 9. 在另一個視圖上顯示一個UIViewController/UIView
- 10. 從UIViewController的推最後一個視圖
- 11. 添加一個UITableView到UIViewController的視圖
- 12. 兩個UICollectionViews在一個UIViewController中2個UICollectionViewCells
- 13. 爲2個UIViewController創建一個UINavigationController
- 14. IOS顯示視圖 - 在另一個UIViewController中觸發函數
- 15. 如何在一個UIViewController中處理很多視圖
- 16. 如何在UIViewController中創建一個視圖容器?
- 17. 選擇一個視圖來顯示Android中的2個視圖?
- 18. Zend框架2 - 在一個視圖中調用一個動作
- 19. 一個UetableViews在一個UIViewController中的FetchedResultsController
- 20. 後2種形式,在一個視圖
- 21. 在UIViewController中更改視圖
- 22. 動畫2視圖一起隱藏其中一個視圖是
- 23. 一個UIViewController或兩個用於縱向/橫向視圖
- 24. 在兩個透視圖中添加一個視圖,在兩個透視圖中都可見一個透視圖
- 25. UIViewController中擁有另一個UIViewController中
- 26. 在一個視圖中有2個列表的RecyclerView?
- 27. 在一個控制器中顯示2個選取器視圖
- 28. Javafx 2 - 在一個anchorpane中顯示多個視圖
- 29. Yii - 1在一個視圖中形成2個模型
- 30. 在MySQL中創建一個視圖表,但是從2個表
按鈕點擊,隱藏/顯示或添加/刪除相應的意見 – 2012-01-20 10:02:36