TabBar.h 451 B

123456789101112131415161718192021
  1. //
  2. // TabBar.h
  3. // TCXF
  4. //
  5. // Created by 张毅成 on 2017/6/22.
  6. // Copyright © 2017年 张毅成. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TabBar : UITabBar
  10. /**
  11. * 设置全局导航栏标题颜色, 和文字大小
  12. *
  13. * @param globalTextColor 全局导航栏标题颜色
  14. * @param fontSize 全局导航栏文字大小
  15. */
  16. + (void)setGlobalTextColor: (UIColor *)globalTextColor andFontSize: (CGFloat)fontSize;
  17. @end