// // GMHorizontalLayoutButton.h // Gengmei // // Created by wangyang on 8/17/15. // Copyright (c) 2015 Wanmeichuangyi. All rights reserved. // #import "GMButton.h" /** * @author licong, 15-09-27 17:09:12 * * Button同时存在图片和文字时候的排列样式 * * @since 5.2.0 */ typedef NS_ENUM(NSInteger, GMButtonImageArrangeType){ //图片居左,文字居右 GMButtonImageArrangeLeftType = 1, //文字居左,图片居右 GMButtonImageArrangeRightType = 2, }; __deprecated_msg("使用GMKit-Swift库中的AllLayoutButton.swift代替,会在9月份被删除掉") @interface GMHorizontalLayoutButton : GMButton /** * @brief 设置button image 和 title的间距 */ @property (nonatomic, assign) CGFloat imageAndTitleSpace; @property (nonatomic, assign) GMButtonImageArrangeType imageArrangeType; @end