Newer
Older
XinYang_IOS / XYSW / YH_Category / UIButton+ImageTitleSpacing.h
@zhangfeng zhangfeng on 7 Dec 649 bytes 1.8.0
//
//  UIButton+ImageTitleSpacing.h
//  YJJ
//
//  Created by Luo yuntao  on 2017/5/23.
//  Copyright © 2017年 gekui. All rights reserved.
//

#import <UIKit/UIKit.h>
typedef NS_ENUM(NSUInteger, MKButtonEdgeInsetsStyle) {
    MKButtonEdgeInsetsStyleTop, // image在上,label在下
    MKButtonEdgeInsetsStyleLeft, // image在左,label在右
    MKButtonEdgeInsetsStyleBottom, // image在下,label在上
    MKButtonEdgeInsetsStyleRight // image在右,label在左
};

@interface UIButton (ImageTitleSpacing)
- (void)layoutButtonWithEdgeInsetsStyle:(MKButtonEdgeInsetsStyle)style
                        imageTitleSpace:(CGFloat)space;
@end