您可以使用
UIViewController *yourViewController = [[YourViewControllerClass alloc] initWithNibName:@"<name of xib>" bundle:nil];
[self presentModalViewController:yourViewController animated:YES];
[yourViewController release];
在情況下,新觀點也是以編程方式創建,你可以做,在YourViewControllerClass的viewDidLoad方法,改變初始化
UIViewController *yourViewController = [[YourViewControllerClass alloc] init];
在YourViewController當您希望回到以前的某個按鈕動作視圖時,您可以使用
[self dismissModalViewControllerAnimated:YES];
,你可以做另一方法是
UIViewController *yourViewController = [[YourViewControllerClass alloc] init];
[self addSubview:[yourViewController view]];
和刪除視圖可以使用
[self.view removeFromSuperview];
感謝您的答覆。我想知道更多的事情。是plist存儲數據的好方法嗎? – ashwin19 2012-03-12 06:22:47
SQLlite和核心數據是不錯的選擇.. – 2012-03-12 06:28:44
你有問題嗎? – 2012-03-12 06:46:45