123456789101112131415161718192021 |
- //
- // TabBar.h
- // TCXF
- //
- // Created by 张毅成 on 2017/6/22.
- // Copyright © 2017年 张毅成. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface TabBar : UITabBar
- /**
- * 设置全局导航栏标题颜色, 和文字大小
- *
- * @param globalTextColor 全局导航栏标题颜色
- * @param fontSize 全局导航栏文字大小
- */
- + (void)setGlobalTextColor: (UIColor *)globalTextColor andFontSize: (CGFloat)fontSize;
- @end
|