1
我有這段代碼,每次我使用它時,目標視圖的viewDidLoad
被調用兩次。UIStoryboard instantiateViewControllerWithIdentifier調用兩次
爲什麼發生這種情況?
Destination *myDestination = [self.storyboard instantiateViewControllerWithIdentifier:@"destination "];
MyCustomSegue *segue = [[MyCustomSegue alloc] initWithIdentifier:@"CustomSegue" source:self destination : myDestination];
[segue perform];
爲什麼不直接調用performSegueWithIdentifier? – Paulw11
因爲我不想在故事板中添加一個segue。但是你的回答幫助我理解我的習俗中的某些東西是錯誤的。 –
你爲什麼不呈現視圖控制器而不是創建segue? – EridB