UIButton+Extension.h 821 B

1234567891011121314151617181920212223242526
  1. //
  2. // UIButton+Extension.h
  3. // HuaKaiChat
  4. //
  5. // Created by BigBiao on 2017/8/24.
  6. // Copyright © 2017年 huakai. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIButton (Extension)
  10. typedef NS_ENUM(NSUInteger, MKButtonEdgeInsetsStyle) {
  11. MKButtonEdgeInsetsStyleTop, // image在上,label在下
  12. MKButtonEdgeInsetsStyleLeft, // image在左,label在右
  13. MKButtonEdgeInsetsStyleBottom, // image在下,label在上
  14. MKButtonEdgeInsetsStyleRight // image在右,label在左
  15. };
  16. /**
  17. * 设置button的titleLabel和imageView的布局样式,及间距
  18. *
  19. * @param style titleLabel和imageView的布局样式
  20. * @param space titleLabel和imageView的间距
  21. */
  22. - (void)layoutButtonWithEdgeInsetsStyle:(MKButtonEdgeInsetsStyle)style
  23. imageTitleSpace:(CGFloat)space;
  24. @end