我可以將視圖的名稱作爲switch語句的參數嗎?如果是的話,我會在交換機中使用什麼?將故事板名稱傳遞給switch語句?
[self addChildViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"View1"]];
[self addChildViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"View2"]];
[self addChildViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"View3"]];
[self addChildViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"View4"]];
[self addChildViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"View5"]];
[self addChildViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"View6"]];
[self addChildViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"View7"]];
[self addChildViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"View8"]];
[self addChildViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"View9"]];
[self addChildViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"View10"]];
根據視圖名稱,我想在標籤中顯示不同的文本位。所以我想要一個開關,其中的情況是視圖的名稱我只是不知道如何返回視圖的名稱,所以我可以檢查它們。
謝謝。
如果你有名字_in一個string_已經,你並不需要一個開關。如果你想在運行時獲得_variable_的標籤,那麼你可以爲ivars做到這一點,但它幾乎肯定是錯誤的方式。請詳細說明你想要完成什麼。 –
編輯我的問題 – Lewis