私はiPhoneDeveloperを初めて使用します。
アニメーションで新しいページに移動したいのですが、新しいページに移動できません。
これが私のコードスニペットです、
UIButton *Planbtn = (UIButton *)[self.view viewWithTag:1];
[Planbtn addTarget:self action:@selector(btnClicked) forControlEvents:UIControlEventTouchUpInside];
..
-(void)btnClicked{
NSLog(@"btnClicked");
PlanPage *yourViewController = [[PlanPage alloc] initWithNibName:@"PlanPage" bundle:[NSBundle mainBundle]];
[self.navigationController pushViewController:yourViewController animated:TRUE];
[yourViewController release];
}
btnClicked
ログで確認できます。
前もって感謝します !