presentModalViewControllerを使用すると、ボタンアクションが機能しません
ビュー1:
-
(void)PreseentTheNextView
{
NSLog(@"clicked to add the new view from botom to top");
PreferenceViewController *prefDetails=[[PreferenceViewController alloc] initWithNibName:@"PreferenceViewController" bundle:nil];
[self presentModalViewController:prefDetails animated:YES];
}
PreferenceViewControllerに2つのボタンがあります
ビュー2:
-(IBAction)button1Click
{
NSLog(@"Button 1 Clicked");
}
-(IBAction)button2Click
{
NSLog(@"Button 2 Clicked");
}
-(IBAction)DismissButton
{
NSLog(@"Remove/ Dismiss down the view to previus page ");
}
これらのボタンはすべて、PreferenceViewControllerのIBに設定されています。
そして、 presentModalViewControllerを使用すると、これらのボタンアクションが機能しません
また、 Navigation PushViewControllerを使用した場合は、正常に動作します。
しかし、私たちの要件は、下から上へのビューのみを提示することです