0

textField のコンテンツに基づいてボタンを新しい UIViewController に移動させようとしていますが、それを実行してボタンを押すと (テキスト フィールドに新しい UIViewController に移動するための適切な条件が設定されている場合)、画面がブラックアウト。これは、.h および .m ファイルに書いたものです。誰でも私を助けることができますか(私はストーリーボードを使用しています)

@interface ViewController : UIViewController

- (IBAction)boton:(id)sender;

@property (strong, nonatomic) IBOutlet UITextField *texto;
@end

#import "ViewController.h"
#import "ViewController2.h"


@interface ViewController ()


@end

@implementation ViewController
@synthesize texto;

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

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

- (IBAction)boton:(id)sender {
    if ([texto.text isEqualToString:@"1"]) {
        ViewController2 *vc1=[[ViewController2 alloc]init];
        [self presentViewController:vc1 animated:YES completion:nil];

    }


}
@end
4

1 に答える 1