0

ビューコントローラーを開いています (ナビゲーションバーとビューコントローラーを閉じるためのバーボタン項目があります)。これは、ユーザーが「ヘルプ」ボタンをクリックしたときに情報を表示するためのビューコントローラーです。ナビゲーションは次のようになります: 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開発に不慣れです.ここで非常に明白な何かが欠けています.どんな助けも大歓迎です!

4

1 に答える 1

1

ボタンをクリックし、右側のツールでタブCloseを選択します。connection inspectorボタンがcloseAction:touchUpInside モードでこのメソッドに接続されていることを確認します。

そうでない場合は、UIButtonコンセントをこの方法に接続してから-(IBAction)closeAction:(id)sender;試してください。

更新: ボタンが の場合、UIBarButtonItemのようなオプションがあります"New referencing outlet"。そこからドラッグして、メソッドに接続します。

于 2012-10-29T08:13:34.167 に答える