BBADisclosureIndicator.h
416 Bytes
//
// BBADisclosureIndicator.h
// BBAPods
//
// Created by Xiong Feng on 15/11/13.
// Copyright © 2015年 Baidu. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef NS_ENUM(NSUInteger, BBADisclosureIndicatorType)
{
BBADisclosureIndicatorGray = 0,
BBADisclosureIndicatorWhite
};
@interface BBADisclosureIndicator : UIImageView
-(instancetype)initWithType:(BBADisclosureIndicatorType)type;
@end