我有2個視圖與nib文件之間的切換視圖的問題! 在這裏我的代碼。 我的第一頁轉到第2頁!但在第2頁我不能回到第一頁!我的應用程序去了..這裏是我的代碼:iPhone Switch視圖_KILL!問題
從頁面1到2:
#import "HafezViewController.h"
#import "GhazaliateHafez.h"
-(IBAction)gh:(id)sender {
HafezViewController *ghPage = [[HafezViewController alloc] initWithNibName: @"GhazaliateHafez" bundle:nil];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.3];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.view cache:YES];
[self.view addSubview:ghPage.view];
[UIView commitAnimations];
}
^^^^^^^^^ 此代碼的偉大工程! 但是從第2頁背:
#import "GhazaliateHafez.h"
#import "HafezViewController.h"
@implementation GhazaliateHafez
-(IBAction)ghtoIndex:(id)sender {
HafezViewController *back1 = [[HafezViewController alloc] initWithNibName:@"index" bundle:nil];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.5];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];
[self.view addSubview:back1.view];
[UIView commitAnimations];
}
後我點擊後退按鈕我的應用程序去崩潰...... 什麼我的問題呢? 謝謝
我強烈建議你修改你的信息來解決你的代碼的格式。閱讀當前狀態非常困難。 –
修好了!!!!!!! – Momi