0

私はファーストクラスで、2つのクラスを持っています

- (IBAction)Login:(id)sender {
 SampleViewController2 *sampleView = [[[SampleViewController2 alloc] init];
   [self presentModalViewController:sampleView animated:YES];
}

二等で..

- (IBAction)Logout:(id)sender {
  [self dismissModalViewControllerAnimated:YES];
}

ビューコントローラーから却下しようという警告が表示されます..ここでの問題は何ですか..

4

2 に答える 2

2

これを追加:

 if (![[self modalViewController] isBeingDismissed])
        [self dismissModalViewControllerAnimated:YES];

簡単なGoogle検索を行ってください。あなたが述べた問題は一般的です...

于 2013-04-02T16:28:14.907 に答える
1

現在のビューのモーダル ビューが閉じられているかどうかを閉じる前に確認してください。

if (![[self modalViewController] isBeingDismissed]){
        [self dismissModalViewControllerAnimated:YES];
}
于 2013-04-02T16:26:29.897 に答える