これはこれまでのところ私が得たものです。 mainview.m1つのビューから別のビューにデータを渡す(Storyboard、iOS)
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender(id)sender {
secondView *secView = [segue destinationViewController]
secView.ext = @".com";
}
secondView.h
@interface secondView : UIViewController {
NSString *ext;
}
@proper (nonatomic, retain) NSString *ext;
@end
secondView.m
-(void)viewDidLoad {
NSString *url = [@"www.google" stringByAppendingFormat:ext]
}
そして、その私が間違って何をやっている... extがnullであるというエラーを返しますか?
私は実際にそれらの行を持っていました。私はここにそれらを入力するのを忘れました、私を編集させてください! – Cloaky