单军华
2016-12-23 5e0025a973fb918f9790fa950d862e713acc807f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
//  PopoverViewCell.h
//  Popover
//
//  Created by StevenLee on 2016/12/10.
//  Copyright © 2016年 lifution. All rights reserved.
//
 
#import <UIKit/UIKit.h>
#import "PopoverAction.h"
 
UIKIT_EXTERN float const PopoverViewCellHorizontalMargin; ///< 水平间距边距
UIKIT_EXTERN float const PopoverViewCellVerticalMargin; ///< 垂直边距
UIKIT_EXTERN float const PopoverViewCellTitleLeftEdge; ///< 标题左边边距
 
@class PopoverAction;
 
@interface PopoverViewCell : UITableViewCell
 
@property (nonatomic, assign) PopoverViewStyle style;
 
/*! @brief 标题字体
 */
+ (UIFont *)titleFont;
 
/*! @brief 底部线条颜色
 */
+ (UIColor *)bottomLineColorForStyle:(PopoverViewStyle)style;
 
- (void)setAction:(PopoverAction *)action;
 
- (void)showBottomLine:(BOOL)show;
 
@end