123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // UINavigationBar+Extesion.h
- // LiveChat
- //
- // Created by 张灿 on 2018/4/21.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface UINavigationBar (Extesion)
- - (void)setClearBar;
- - (void)setPupleGradientBar;
- - (void)setBlueGradientBar;
- - (void)setPinkGradientBar;
- - (void)setBrownBar;
- - (void)setBlackBar;
- - (void)setBlackBar1;
- - (void)setDefaultBar;
- - (void)setPureColorGradientBar;
- - (void)setGoldGradientBar;//黄金渐变色
- - (void)setGrayGradientBar;//灰色渐变色
- - (void)setFaintYellowBar;//淡黄色
- - (void)setFaintGrayBar;//淡灰色
- - (void)setFaintOrangeBar;//淡橘色
- ///// 子爵
- //- (void)setViscountBar;
- ///// 伯爵
- //- (void)setEarlBar;
- ///// 公爵
- //- (void)setDukeBar;
- ///// 国王
- //- (void)setKingBar;
- ///// 皇帝
- //- (void)setEmperorBar;
- @end
|