私はこのコードを持っています何が間違っていたのでしょうか?xCodeのデバッガは@implementationコンテキストが下にありますように言います。やるそこにエラーがライン上TransitionOne"メソッド定義が@implementationコンテキストにありません"
-(IBAction)Transition1:(id)sender
{
TransitionOne *view2 = [[transitionOne alloc] initWithNicName:@"TransitonOne" bundle:nil];
view2.modalTransitionStyle=UIModalTransitionStyleCoverVertical; // code
[self presentModalViewController:view2 animate:YES];
}
まあ、その定義は '@implementation ... @end'の内部にありますか? –
いいえエラーはそれだ – nickj890