GMVerticalLayoutButton.h 685 Bytes
//
//  GMImageTitleLabelButton.h
//  Gengmei
//
//  Created by wangyang on 15/10/15.
//  Copyright © 2015年 Wanmeichuangyi. All rights reserved.
//

#import "GMButton.h"

/**
 *  @author wangyang, 15-10-15 15:10:38
 *
 *  @brief  默认有一个约束,图片在上,标题在下。
 可以重写updateConstraints 方法以重新布局。
 可以重写 setup 方法以自定义样式及图片
 *  @since 5.2.0
 */
__deprecated_msg("使用GMKit-Swift库中的AllLayoutButton.swift代替,,会在9月份被删除掉")
@interface GMVerticalLayoutButton : GMButton
@property (nonatomic, strong) UILabel *buttonLabel;
@property (nonatomic, strong) UIImageView *buttonImageView;
@end