18 lines
328 B
Objective-C
18 lines
328 B
Objective-C
//
|
|
// UINavigationController+Config.m
|
|
// Ifish
|
|
//
|
|
// Created by JiangXuefei on 2019/3/13.
|
|
// Copyright © 2019年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "UINavigationController+Config.h"
|
|
|
|
@implementation UINavigationController (Config)
|
|
|
|
+ (void)initialize {
|
|
[[UINavigationBar appearance] setTranslucent:NO];
|
|
}
|
|
|
|
@end
|