BBAFontSlider.h
646 Bytes
//
// BBAFontSlider.h
// BBAPods
//
// Created by mayulong01 on 25/10/2016.
// Copyright © 2016 Baidu. All rights reserved.
//
#import <UIKit/UIKit.h>
extern NSString * const kBBANotificationFontSizeChanged;
@interface BBAFontSlider : UIControl
/*!
* @brief 初始化字体设置面板
*
* @param sectionCount 定义字号级别
* @param barStyle 适配当前底部导航的主题
* @param defaultIndex 当前字号
*
*/
-(instancetype)initWithFrame:(CGRect)frame
sections:(NSInteger)sectionCount
defaultIndex:(NSInteger)defaultIndex
withBarStyle:(NSInteger)barStyle;
@end