Tabster/Classes/FeaturedViewController.m
/* |
Copyright (C) 2018 Apple Inc. All Rights Reserved. |
See LICENSE.txt for this sample’s licensing information |
Abstract: |
The "Featured" view controller. |
*/ |
#import "FeaturedViewController.h" |
@interface FeaturedViewController () |
@property (nonatomic, weak) IBOutlet UILabel *titleLabel; |
@end |
#pragma mark - |
@implementation FeaturedViewController |
- (void)viewWillAppear:(BOOL)animated |
{ |
[super viewWillAppear:animated]; |
// If we were navigated to through the More screen table, then we have a navigation bar which |
// also means we have a title. So hide the title label in this case, otherwise, we need it. |
// |
self.titleLabel.hidden = [self.parentViewController isKindOfClass:[UINavigationController class]] ? YES : NO; |
} |
@end |
Copyright © 2018 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2018-02-15