12345678910111213141516171819 |
- //
- // UIButton+ex.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/13.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface UIButton (ex)
- -(void)setTitleUnderImgWithTitle:(NSString *)title TitleColor:(UIColor *)color Image:(UIImage *)image label:(UILabel *)topLab;
- -(void)setTitle:(NSString*)title textColor:(UIColor*)color font:(CGFloat)font fotState:(UIControlState)stateType;
- -(void)borderColor:(UIColor *)color width:(CGFloat)wid cornorRadios:(CGFloat)cornor;
- @end
|