-1

我想在一个带有单独组中的类文件的 xib 界面中添加一个导航栏。导航栏应该有一个后退按钮,如果我单击后退按钮,它将在另一个组中的另一个 xib 中查看。是否有关于此导航栏的教程,用于在 ios 中两个单独的 xib 组之间导航。

4

3 回答 3

1
sampleViewController *viewController = [[sampleViewController alloc]init];    
[self presentViewController:viewController animated:YES completion:Nil];

将上述内容写在一个按钮动作中,例如:(作为UIView您想要去的后退按钮)

-(IBAction)moveview:(id)sender
{

}

sampleViewController是您要从当前视图导航的视图。

于 2014-01-23T10:26:00.287 回答
0

这是 Apple 对ViewControllers. 它涵盖了Navigation Controller很多。通过阅读本编程指南,您将受益匪浅:

http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/Introduction/Introduction.html#//apple_ref/doc/uid/TP40007457-CH1-SW1

阅读完本文后,您可以从以下链接了解很多关于UINavigationController、它的方法、属性和其他内容的信息:

http://developer.apple.com/library/ios/#documentation/uikit/reference/UINavigationController_Class/Reference/Reference.html

于 2013-07-22T10:27:16.150 回答
0

sampleViewController *viewController = [[sampleViewController alloc] initWithNibName:@"sampleViewController" Bundle:NULL];

[self presentViewController:viewController 动画:YES 完成:Nil];

于 2014-01-23T10:29:35.070 回答