Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 iphone 新手,所以我有一个非常简单的问题。我在xcode 4.2. 我有多个屏幕,每个屏幕都有关于按钮viewController。
xcode 4.2
viewController
现在我已经创建了 segues ofc。我与 about 链接的每个 about 按钮viewController。但是我没有使用navigation controller.
navigation controller
我已经定制了一个后退按钮。我怎样才能回到将我带到关于部分的屏幕。
最好的祝福
如果您以模态方式呈现新的视图控制器,则可以使用以下方法将其关闭。
-(IBAction)myCloseAction:(id)sender{ [self dismissViewControllerAnimated:YES completion:nil]; }
由于您没有使用导航控制器,您需要手动执行推送和弹出视图控制器。当您更改视图控制器时,将先前的视图控制器引用存储在新的视图控制器中,当按下后退按钮时转到先前存储的视图控制器。