0

プログラムでviewControllerに戻るボタンを追加しようとしていますが、シミュレーターを介してインターフェイスに表示されません。コードに何かがありませんか?? 空白の画面だけのビルド エラーがあります。

#import "ViewController.h"

@interface ViewController ()
@end

@implementation ViewController
- (void) performAdd:(id)paramSender{
   NSLog(@"Button got called");
}

- (void)viewDidLoad
{
    [super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.

    self.view.backgroundColor = [UIColor blackColor];
    self.title =@"go Back";

    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]
     initWithBarButtonSystemItem:(UIBarButtonSystemItemAdd)
     target:self
     action:@selector(performAdd:)];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
@end
4

0 に答える 0