2012-01-20 74 views
1

我需要知道如何實現下面圖像的目的(聯繫信息視圖和查詢視圖),即使沒有編寫代碼,任何建議都會很棒。2個視圖在一個UIViewController中

圖像:

enter image description here

+2

按鈕點擊,隱藏/顯示或添加/刪除相應的意見 – 2012-01-20 10:02:36

回答

1
  1. 放置在一個視圖控制器與同一幀的兩個視圖,並就它們的隱藏 。當用戶將聯繫人信息切換爲詢問時, 會隱藏另一個視圖,只需更改視圖的隱藏屬性即可。
  2. 如果這些視圖是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; 
} 

希望它可以幫助

相關問題