私は、モーダルビューのボタンをクリックすることに基づいてsplitviewコントローラのビューを変更しようとしています(人はオプションを選択しています)。私はこれを達成するために、通知を使用しています:splitviewcontrollerのビューを変更できません
[[NSNotificationCenter defaultCenter] postNotificationName::それは通知を発行し、ボタンがモーダルビューでクリックすると
を、その後、(退去)自体を閉じ@」 launchProject "オブジェクト:nil];
DetailViewController意見が出てスイッチングされていない理由を分割ビューコントローラは、この通知のためのリスニング、およびSVC
-(void)launchProject:(NSNotification *)notification { Project* secondDetail2 = [[Project alloc] initWithNibName:nil bundle:nil]; ProjectRootController* secondRoot2 = [[ProjectRootController alloc] initWithNibName:nil bundle:nil ]; self.splitViewController.viewControllers =[NSArray arrayWithObjects: secondRoot2, secondDetail2 , nil]; }
でビューを切り替えているの内側に私は理解していません。これに関するアドバイスは大歓迎です。
非常に役に立ちます。御時間ありがとうございます。 – Aaron
@Aaron、答えの左側にある緑色のチェックマークのアウトラインをクリックして回答を受け入れることができます。この回答と他の質問の回答を検討し、該当する場合は「受け入れ」チェックマークをクリックしてください。 – jball