CustomUnwindSegue/QuizContainerViewController.h
/* |
Copyright (C) 2018 Apple Inc. All Rights Reserved. |
See LICENSE.txt for this sample’s licensing information |
Abstract: |
A custom container view controller that is functionally similar to a |
UINavigationController. |
*/ |
@import UIKit; |
@interface QuizContainerViewController : UIViewController |
//! The view controller at the top of the navigation stack (on screen). |
@property (nonatomic, readonly) UIViewController *topViewController; |
@property (nonatomic, copy) NSArray *viewControllers; |
- (void)setViewControllers:(NSArray *)viewControllers animated:(BOOL)animated; |
- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated; |
- (NSArray *)popToViewController:(UIViewController *)viewController animated:(BOOL)animated; |
@end |
Copyright © 2018 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2018-03-15