0
我有一個帶有分段控件和目標視圖的xib文件。我已經爲這個zib文件添加了三個其他子視圖。我想在用戶選擇分段控件時將適當的子視圖放到目標視圖中。我無法讓我的適當的子視圖顯示。這裏是我的代碼:iOS6將不同的子視圖放入現有的子視圖
// putting all 3 views in the target frame
self.activationView.frame = self.targetView.frame;
self.preferencesView.frame = self.targetView.frame;
self.aboutView.frame = self.targetView.frame;
// show the appropriate frame
self.targetView.hidden = YES;
self.preferencesView.hidden = YES;
self.aboutView.hidden = YES;
self.activationView.hidden = NO;
任何想法?
謝謝。
非常感謝! :-) – Patricia
@PatriciaLaRue歡迎 – Kassem