//
//  UIButton+Title_Image.h
//  SaleHelper
//
//  Created by 曹云霄 on 2017/1/3.
//  Copyright © 2017年 上海勾芒信息科技. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface UIButton (Title_Image)

//上下居中,图片在上,文字在下
- (void)verticalCenterImageAndTitle:(CGFloat)spacing;

//左右居中,文字在左,图片在右
- (void)horizontalCenterTitleAndImage:(CGFloat)spacing;

//左右居中,图片在左,文字在右
- (void)horizontalCenterImageAndTitle:(CGFloat)spacing;

//文字居中,图片在左边
- (void)horizontalCenterTitleAndImageLeft:(CGFloat)spacing;

//文字居中,图片在右边
- (void)horizontalCenterTitleAndImageRight:(CGFloat)spacing;


@end