ビューコントローラーを開いています (ナビゲーションバーとビューコントローラーを閉じるためのバーボタン項目があります)。これは、ユーザーが「ヘルプ」ボタンをクリックしたときに情報を表示するためのビューコントローラーです。ナビゲーションは次のようになります: ViewController1 ->「ヘルプ」ボタン -> Viewcontroller2. Viewcontroller2 には、この ViewController を閉じる「閉じる」ボタンがあります。IBAction がファイルの所有者にフックされた [閉じる] ボタンがありますが、[閉じる] ボタンをクリックしてもブレークポイントにヒットしません。コードは次のとおりです。
DetailViewController.m(viewcontroller1):
-(void) showHelp:(id)sender
{
HelpViewController *helpWindow = [[HelpViewController alloc]initWithNibName:@"HelpViewController" bundle:[NSBundle mainBundle]];
helpWindow.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:helpWindow animated:YES];
}
HelpViewController.m(viewcontroller2):
#import "HelpViewController.h"
@interface HelpViewController ()
@end
@implementation HelpViewController
@synthesize scrollView;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
- (IBAction)closeAction:(id)sender {
[self dismissModalViewControllerAnimated:YES];
}
@end
「closeAction」にブレークポイントを入れてみたのですがヒットしません。私はiOS開発に不慣れです.ここで非常に明白な何かが欠けています.どんな助けも大歓迎です!