UIButton+YOHO.h 657 Bytes
//
//  UIButton+YOHO.h
//  YH_Mall
//
//  Created by Haizi on 16/2/23.
//  Copyright © 2016年 YOHO. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface UIButton (YOHO)

/**
 @brief  快速初始化button
 
 @param imageName            背景图名
 @param highlightedImageName 高亮背景图名
 @param title                标题
 @param target               消息发送者
 @param action               事件响应
 
 @return UIButton实例
 
 @since 3.1
 */
+ (instancetype)yh_buttonWithImageName:(NSString *)imageName highlightedImageName:(NSString *)highlightedImageName title:(NSString *)title target:(id)target action:(SEL)action;

@end