mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
33 lines
915 B
Objective-C
33 lines
915 B
Objective-C
//
|
|
// NBDashboardNavigationBar.m
|
|
// NewsBlur
|
|
//
|
|
// Created by Samuel Clay on 10/3/17.
|
|
// Copyright © 2017 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import "NBDashboardNavigationBar.h"
|
|
|
|
@implementation NBDashboardNavigationBar
|
|
|
|
- (void)layoutSubviews
|
|
{
|
|
[super layoutSubviews];
|
|
|
|
// for (UIView *subview in self.subviews) {
|
|
// if ([NSStringFromClass([subview class]) containsString:@"BarBackground"]) {
|
|
// CGRect subViewFrame = subview.frame;
|
|
// subViewFrame.origin.y = 0;
|
|
// subViewFrame.size.height = 64;
|
|
// [subview setFrame: subViewFrame];
|
|
// }
|
|
// if ([NSStringFromClass([subview class]) containsString:@"BarContentView"]) {
|
|
// CGRect subViewFrame = subview.frame;
|
|
// subViewFrame.origin.y = 20;
|
|
// subViewFrame.size.height = 44;
|
|
// [subview setFrame: subViewFrame];
|
|
// }
|
|
// }
|
|
}
|
|
|
|
@end
|