Tabster/Classes/ModalViewController.m
/* |
Copyright (C) 2018 Apple Inc. All Rights Reserved. |
See LICENSE.txt for this sample’s licensing information |
Abstract: |
The modal view controller for temporary UI interaction. |
*/ |
#import "ModalViewController.h" |
#import "SubLevelViewController.h" |
@interface ModalViewController () |
@property (weak, nonatomic) IBOutlet UILabel *titleLabel; |
@end |
#pragma mark - |
@implementation ModalViewController |
- (void)viewWillAppear:(BOOL)animated |
{ |
[super viewWillAppear:animated]; |
self.titleLabel.text = self.owningViewController.currentSelectionTitle; |
} |
@end |
Copyright © 2018 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2018-02-15