UINavigationBar+Extesion.h 828 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // UINavigationBar+Extesion.h
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/4/21.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UINavigationBar (Extesion)
  10. - (void)setClearBar;
  11. - (void)setPupleGradientBar;
  12. - (void)setBlueGradientBar;
  13. - (void)setPinkGradientBar;
  14. - (void)setBrownBar;
  15. - (void)setBlackBar;
  16. - (void)setBlackBar1;
  17. - (void)setDefaultBar;
  18. - (void)setPureColorGradientBar;
  19. - (void)setGoldGradientBar;//黄金渐变色
  20. - (void)setGrayGradientBar;//灰色渐变色
  21. - (void)setFaintYellowBar;//淡黄色
  22. - (void)setFaintGrayBar;//淡灰色
  23. - (void)setFaintOrangeBar;//淡橘色
  24. ///// 子爵
  25. //- (void)setViscountBar;
  26. ///// 伯爵
  27. //- (void)setEarlBar;
  28. ///// 公爵
  29. //- (void)setDukeBar;
  30. ///// 国王
  31. //- (void)setKingBar;
  32. ///// 皇帝
  33. //- (void)setEmperorBar;
  34. @end