- 1、UIButton 图片、文字自定义布局
- 2、UIButton 自定义切圆角,可以设置任意一个角的角半径
- 3、用 UIButton 的分类处理,处理更简单,一行代码轻松搞定所有 UIButton 自定义
- 4、新增 UIButton 各种状态下背景颜色、字体、border、font、动画等的监测及改变
- 5、新增 UIButton 倒计时的封装,两行代码搞定倒计时!
- 6、注意:文字、字体大小、图片等设置一定要在设置 ba_button_setBAButtonLayoutType 之前设置,要不然计算会以默认字体大小计算,导致位置偏移
- 7、优化命名规范,更换了全局统一属性命名和方法命名,如果更新有报错的地方,大家别急,看 .h 文件更换过来即可,后期推出的 BAKit 系列产品,命名都将统一规范,在此给大家带来的不便之处,向大家道歉!希望大家谅解!多谢体谅!
- 8、新增 view 的 border 的创建,可以自定义圆角、边框、边框颜色等(感谢群里 @北京-大腿 同学提出的 需求!)
- 9、修复 xib 下圆角右边无效的bug,注意:如果是 xib,需要要有固定 宽高,要不然 iOS 10 设置无效(感谢群里 @北京-小黑 同学提出的 bug!)
- 10、新增 大图片 button 的 layout 布局,如果你的图片宽高大于 自身的宽高,怎需要压缩后再配置布局,具体看 demo
- 11、重构 <UIButton+BAKit.h>类,新增多种快速创建 button 的方法
- 1、pod 导入【最新版本:】:
pod 'BAButton'
如果发现pod search BAButton
搜索出来的不是最新版本,需要在终端执行 cd 转换文件路径命令退回到 desktop,然后执行pod setup
命令更新本地spec缓存(可能需要几分钟),然后再搜索就可以了。
具体步骤:- pod setup : 初始化
- pod repo update : 更新仓库
- pod search BAButton
- 2、文件夹拖入:下载demo,把 BAButton 文件夹拖入项目即可,
- 3、导入头文件:
#import "BAButton.h"
- 4、项目源码地址:
OC 版 :https://github.com/BAHome/BAButton
#ifndef BAButton_h
#define BAButton_h
#import "UIButton+BAKit.h"
#import "UIButton+BAState.h"
#import "UIButton+BACountDown.h"
#import "UIView+BARectCorner.h"
#import "BAKit_ConfigurationDefine.h"
/*!
*********************************************************************************
************************************ 更新说明 ************************************
*********************************************************************************
欢迎使用 BAHome 系列开源代码 !
如有更多需求,请前往:https://github.com/BAHome
项目源码地址:
OC 版 :https://github.com/BAHome/BAButton
最新更新时间:2017-07-07 【倒叙】<br>
最新Version:【Version:2.5.5】<br>
更新内容:<br>
2.5.5.1、重构 <UIButton+BAKit.h>类,新增多种快速创建 button 的方法 <br>
2.5.5.2、新增多种快速创建 自定义 button 的方法 <br>
最新更新时间:2017-06-27 【倒叙】<br>
最新Version:【Version:2.5.4】<br>
更新内容:<br>
2.5.4.1、新增 大图片 button 的 layout 布局,如果你的图片宽高大于 自身的宽高,怎需要压缩后再配置布局,具体看 demo test2<br>
最新更新时间:2017-06-23 【倒叙】
最新Version:【Version:2.5.3】
更新内容:
2.5.3.1、优化部分宏定义
最新更新时间:2017-06-23 【倒叙】
最新Version:【Version:2.5.2】
更新内容:
2.5.2.1、优化部分宏定义
最新更新时间:2017-06-20 【倒叙】
最新Version:【Version:2.5.1】
更新内容:
2.5.1.1、新增 view 的 border 的创建,可以自定义圆角、边框、边框颜色等(感谢群里 @北京-大腿 同学提出的 需求!)
2.5.1.2、修复 xib 下圆角右边无效的bug,注意:如果是 xib,需要要有固定 宽高,要不然 iOS 10 设置无效(感谢群里 @北京-小黑 同学提出的 bug!)
最新更新时间:2017-06-19 【倒叙】
最新Version:【Version:2.5.0】
更新内容:
2.5.0.1、优化命名规范,更换了全局统一属性命名和方法命名,如果更新有报错的地方,大家别急,看 .h 文件更换过来即可,后期推出的 BAKit 系列产品,命名都将统一规范,在此给大家带来的不便之处,向大家道歉!希望大家谅解!多谢体谅!
最新更新时间:2017-06-01 【倒叙】
最新Version:【Version:2.4.3】
更新内容:
2.4.3.1、快速创建 button 方法改为类方法,可直接调用!
最新更新时间:2017-06-01 【倒叙】
最新Version:【Version:2.4.2】
更新内容:
2.4.2.1、优化注释
最新更新时间:2017-06-01 【倒叙】
最新Version:【Version:2.4.1】
更新内容:
2.4.1.1、优化注释,注意:文字、字体大小、图片等设置一定要在设置 ba_button_setBAButtonLayoutType 之前设置,要不然计算会以默认字体大小计算,导致位置偏移
最新更新时间:2017-05-27 【倒叙】
最新Version:【Version:2.4.0】
更新内容:
2.4.0.1、此版本由 [子丰大神](https://github.com/renzifeng) 亲自改版,再次感谢 [子丰大神](https://github.com/renzifeng)
2.4.0.2、新增 UIButton 各种状态下背景颜色、字体、border、font、动画等的监测及改变
2.4.0.3、新增 UIButton 倒计时的封装,两行代码搞定倒计时!
2.4.0.4、优化整体代码结构,代码规范!
最新更新时间:2017-05-26 【倒叙】
最新Version:【Version:2.3.2】
更新内容:
2.3.2.1、优化代码结构,修复 frame 改变后 padding 无法更改的问题!
最新更新时间:2017-05-24 【倒叙】
最新Version:【Version:2.3.1】
更新内容:
2.3.1.1、新增:padding_inset,文字或图片距离 button 左右边界的最小距离,默认为:5
最新更新时间:2017-05-20 【倒叙】
最新Version:【Version:2.3.0】
更新内容:
2.3.0.1、用分类全新重构 BAButton,代码配置更灵活
2.3.0.2、可以自由设置 button 的文字和图片的布局、间距、每个角的切圆角
2.3.0.3、全面适配 纯代码、xib、storyboard
2.3.0.4、版本改动较大,希望大家谅解,如果用老版本的 BAButton,可以参考demo 更换新版本,后期改动不大
*/
#endif /* BAButton_h */
#import <UIKit/UIKit.h>
#import "UIView+BARectCorner.h"
NS_ASSUME_NONNULL_BEGIN
/**
button 的样式,以图片为基准
- BAKit_ButtonLayoutTypeNormal: button 默认样式:内容居中-图左文右
- BAKit_ButtonLayoutTypeCenterImageRight: 内容居中-图右文左
- BAKit_ButtonLayoutTypeCenterImageTop: 内容居中-图上文下
- BAKit_ButtonLayoutTypeCenterImageBottom: 内容居中-图下文上
- BAKit_ButtonLayoutTypeLeftImageLeft: 内容居左-图左文右
- BAKit_ButtonLayoutTypeLeftImageRight: 内容居左-图右文左
- BAKit_ButtonLayoutTypeRightImageLeft: 内容居右-图左文右
- BAKit_ButtonLayoutTypeRightImageRight: 内容居右-图右文左
*/
typedef NS_ENUM(NSInteger, BAKit_ButtonLayoutType) {
BAKit_ButtonLayoutTypeNormal = 0,
BAKit_ButtonLayoutTypeCenterImageRight,
BAKit_ButtonLayoutTypeCenterImageTop,
BAKit_ButtonLayoutTypeCenterImageBottom,
BAKit_ButtonLayoutTypeLeftImageLeft,
BAKit_ButtonLayoutTypeLeftImageRight,
BAKit_ButtonLayoutTypeRightImageLeft,
BAKit_ButtonLayoutTypeRightImageRight,
};
@interface UIButton (BAKit)
/**
button 的布局样式,默认为:BAKit_ButtonLayoutTypeNormal,注意:文字、字体大小、图片等设置一定要在设置 ba_button_setBAKit_ButtonLayoutType 之前设置,要不然计算会以默认字体大小计算,导致位置偏移
*/
@property(nonatomic, assign) BAKit_ButtonLayoutType ba_buttonLayoutType;
/*!
* 文字与图片之间的间距,默认为:0
*/
@property (nonatomic, assign) CGFloat ba_padding;
/*!
* 文字或图片距离 button 左右边界的最小距离,默认为:5
*/
@property (nonatomic, assign) CGFloat ba_padding_inset;
#pragma mark - 快速创建 button
/**
快速创建 button1:frame、title、titleColor、titleFont
@param frame frame
@param title title
@param titleColor titleColor
@param titleFont titleFont
@return button
*/
+ (id)ba_buttonWithFrame:(CGRect)frame
title:(NSString * __nullable)title
titleColor:(UIColor * __nullable)titleColor
titleFont:(UIFont * __nullable)titleFont;
/**
快速创建 button2:frame、title、backgroundColor
@param frame frame
@param title title
@param backgroundColor backgroundColor
@return button
*/
+ (id)ba_buttonWithFrame:(CGRect)frame
title:(NSString * __nullable)title
backgroundColor:(UIColor * __nullable)backgroundColor;
/**
快速创建 button3:frame、title、titleColor、titleFont、backgroundColor
@param frame frame
@param title title
@param titleColor titleColor
@param titleFont titleFont
@param backgroundColor backgroundColor
@return button
*/
+ (id)ba_buttonWithFrame:(CGRect)frame
title:(NSString * __nullable)title
titleColor:(UIColor * __nullable)titleColor
titleFont:(UIFont * __nullable)titleFont
backgroundColor:(UIColor * __nullable)backgroundColor;
/**
快速创建 button4:frame、title、backgroundImage
@param frame frame
@param title title
@param backgroundImage backgroundImage
@return button
*/
+ (id)ba_buttonWithFrame:(CGRect)frame
title:(NSString * __nullable)title
backgroundImage:(UIImage * __nullable)backgroundImage;
/**
快速创建 button5:frame、title、titleColor、titleFont、image、backgroundColor
@param frame frame description
@param title title description
@param titleColor titleColor description
@param titleFont titleFont description
@param image image description
@param backgroundColor backgroundColor description
@return button
*/
+ (instancetype)ba_buttonWithFrame:(CGRect)frame
title:(NSString * __nullable)title
titleColor:(UIColor * __nullable)titleColor
titleFont:(UIFont * __nullable)titleFont
image:(UIImage * __nullable)image
backgroundColor:(UIColor * __nullable)backgroundColor;
/**
快速创建 button6:frame、title、titleColor、titleFont、image、backgroundImage
@param frame frame description
@param title title description
@param titleColor titleColor description
@param titleFont titleFont description
@param image image description
@param backgroundImage backgroundImage description
@return button
*/
+ (instancetype)ba_buttonWithFrame:(CGRect)frame
title:(NSString * __nullable)title
titleColor:(UIColor * __nullable)titleColor
titleFont:(UIFont * __nullable)titleFont
image:(UIImage * __nullable)image
backgroundImage:(UIImage * __nullable)backgroundImage;
/**
快速创建 button7:大汇总-点击事件、圆角
@param frame frame
@param title title
@param selTitle selTitle
@param titleColor titleColor,默认:黑色
@param titleFont titleFont默认:15
@param image image description
@param selImage selImage
@param padding padding 文字图片间距
@param buttonLayoutType buttonLayoutType 文字图片布局样式
@param viewRectCornerType viewRectCornerType 圆角样式
@param viewCornerRadius viewCornerRadius 圆角角度
@param target target
@param sel sel
@return button
*/
+ (instancetype __nonnull)ba_creatButtonWithFrame:(CGRect)frame
title:(NSString * __nullable)title
selTitle:(NSString * __nullable)selTitle
titleColor:(UIColor * __nullable)titleColor
titleFont:(UIFont * __nullable)titleFont
image:(UIImage * __nullable)image
selImage:(UIImage * __nullable)selImage
padding:(CGFloat)padding
buttonPositionStyle:(BAKit_ButtonLayoutType)buttonLayoutType
viewRectCornerType:(BAKit_ViewRectCornerType)viewRectCornerType
viewCornerRadius:(CGFloat)viewCornerRadius
target:(id __nullable)target
selector:(SEL __nullable)sel;
/**
快速创建 button8:大汇总-所有 normal、selected、highlighted 样式都有
@param frame frame
@param title title description
@param selectedTitle selectedTitle description
@param highlightedTitle highlightedTitle description
@param titleColor titleColor description
@param selectedTitleColor selectedTitleColor description
@param highlightedTitleColor highlightedTitleColor description
@param titleFont titleFont description
@param image image description
@param selectedImage selectedImage description
@param highlightedImage highlightedImage description
@param backgroundImage backgroundImage description
@param selectedBackgroundImage selectedBackgroundImage description
@param highlightedBackgroundImage highlightedBackgroundImage description
@param backgroundColor backgroundColor description
@param selectedBackgroundColor selectedBackgroundColor description
@param highlightedBackgroundColor highlightedBackgroundColor description
@return button
*/
+ (instancetype)ba_buttonWithFrame:(CGRect)frame
title:(NSString * __nullable)title
selectedTitle:(NSString * __nullable)selectedTitle
highlightedTitle:(NSString * __nullable)highlightedTitle
titleColor:(UIColor * __nullable)titleColor
selectedTitleColor:(UIColor * __nullable)selectedTitleColor
highlightedTitleColor:(UIColor * __nullable)highlightedTitleColor
titleFont:(UIFont * __nullable)titleFont
image:(UIImage * __nullable)image
selectedImage:(UIImage * __nullable)selectedImage
highlightedImage:(UIImage * __nullable)highlightedImage
backgroundImage:(UIImage * __nullable)backgroundImage
selectedBackgroundImage:(UIImage * __nullable)selectedBackgroundImage
highlightedBackgroundImage:(UIImage * __nullable)highlightedBackgroundImage
backgroundColor:(UIColor * __nullable)backgroundColor
selectedBackgroundColor:(UIColor * __nullable)selectedBackgroundColor
highlightedBackgroundColor:(UIColor * __nullable)highlightedBackgroundColor;
#pragma mark - 自定义:button
/**
自定义:button backgroundColor、selectedBackgroundColor、highlightedBackgroundColor
@param backgroundColor backgroundColor
@param selectedBackgroundColor selectedBackgroundColor
@param highlightedBackgroundColor highlightedBackgroundColor
*/
- (void)ba_buttonSetBackgroundColor:(UIColor * __nullable)backgroundColor
selectedBackgroundColor:(UIColor * __nullable)selectedBackgroundColor
highlightedBackgroundColor:(UIColor * __nullable)highlightedBackgroundColor;
/**
自定义:button backgroundImage、selectedBackgroundImage、highlightedBackgroundImage
@param backgroundImage backgroundImage
@param selectedBackgroundImage selectedBackgroundImage
@param highlightedBackgroundImage highlightedBackgroundImage
*/
- (void)ba_buttonSetBackgroundImage:(UIImage * __nullable)backgroundImage
selectedBackgroundImage:(UIImage * __nullable)selectedBackgroundImage
highlightedBackgroundImage:(UIImage * __nullable)highlightedBackgroundImage;
/**
自定义:button image、selectedImage、highlightedImage
@param image image
@param selectedImage selectedImage
@param highlightedImage highlightedImage
*/
- (void)ba_buttonSetImage:(UIImage * __nullable)image
selectedImage:(UIImage * __nullable)selectedImage
highlightedImage:(UIImage * __nullable)highlightedImage;
/**
自定义:button title、selectedTitle、highlightedTitle
@param title title
@param selectedTitle selectedTitle
@param highlightedTitle highlightedTitle
*/
- (void)ba_buttonSetTitle:(NSString * __nullable)title
selectedTitle:(NSString * __nullable)selectedTitle
highlightedTitle:(NSString * __nullable)highlightedTitle;
/**
自定义:button titleColor、selectedTitleColor、highlightedTitleColor
@param titleColor titleColor
@param selectedTitleColor selectedTitleColor
@param highlightedTitleColor highlightedTitleColor
*/
- (void)ba_buttonSetTitleColor:(UIColor * __nullable)titleColor
selectedTitleColor:(UIColor * __nullable)selectedTitleColor
highlightedTitleColor:(UIColor * __nullable)highlightedTitleColor;
/**
自定义:button 字体、大小
@param fontName fontName
@param size size
*/
- (void)ba_buttonSetTitleFontName:(NSString *)fontName
size:(CGFloat)size;
/**
自定义:button 点击事件,默认:UIControlEventTouchUpInside
@param target target
@param tag tag
@param action action
*/
- (void)ba_buttonAddTarget:(nullable id)target
tag:(NSInteger)tag
action:(SEL)action;
/**
快速设置 button 的布局样式 和 间距,注意:文字、字体大小、图片等设置一定要在设置 ba_button_setButtonLayoutType 之前设置,要不然计算会以默认字体大小计算,导致位置偏移
@param type button 的布局样式
@param padding 文字与图片之间的间距
*/
- (void)ba_button_setButtonLayoutType:(BAKit_ButtonLayoutType)type
padding:(CGFloat)padding;
/**
快速切圆角,注意:文字、字体大小、图片等设置一定要在设置 ba_button_setButtonLayoutType 之前设置,要不然计算会以默认字体大小计算,导致位置偏移,如果是 xib,需要要有固定 宽高,要不然 iOS 10 设置无效
@param type 圆角样式
@param viewCornerRadius 圆角角度
*/
- (void)ba_button_setViewRectCornerType:(BAKit_ViewRectCornerType)type
viewCornerRadius:(CGFloat)viewCornerRadius;
/**
快速切圆角,带边框、边框颜色,如果是 xib,需要要有固定 宽高,要不然 iOS 10 设置无效
@param type 圆角样式
@param viewCornerRadius 圆角角度
@param borderWidth 边线宽度
@param borderColor 边线颜色
*/
- (void)ba_button_setViewRectCornerType:(BAKit_ViewRectCornerType)type
viewCornerRadius:(CGFloat)viewCornerRadius
borderWidth:(CGFloat)borderWidth
borderColor:(UIColor *)borderColor;
@end
@interface UIImage (BAKit)
/**
创建一个 纯颜色 图片【全部铺满】
@param color color
@return 纯颜色 图片
*/
+ (UIImage *)ba_image_Color:(UIColor *)color;
/*!
* 根据宽比例去缩放图片,注意:如果button 的图片 太宽,需要调用此方法去等比压缩图片,具体看示例demo
*
* @param width width description
*
* @return return value description
*/
- (UIImage *)ba_imageScaleToWidth:(CGFloat)width;
@end
NS_ASSUME_NONNULL_END
#import <UIKit/UIKit.h>
/*!
* 设置 viewRectCornerType 样式,
* 注意:BAKit_ViewRectCornerType 必须要先设置 viewCornerRadius,才能有效,否则设置无效,
*/
typedef NS_ENUM(NSInteger, BAKit_ViewRectCornerType) {
/*!
* 设置下左角 圆角半径
*/
BAKit_ViewRectCornerTypeBottomLeft = 0,
/*!
* 设置下右角 圆角半径
*/
BAKit_ViewRectCornerTypeBottomRight,
/*!
* 设置上左角 圆角半径
*/
BAKit_ViewRectCornerTypeTopLeft,
/*!
* 设置下右角 圆角半径
*/
BAKit_ViewRectCornerTypeTopRight,
/*!
* 设置下左、下右角 圆角半径
*/
BAKit_ViewRectCornerTypeBottomLeftAndBottomRight,
/*!
* 设置上左、上右角 圆角半径
*/
BAKit_ViewRectCornerTypeTopLeftAndTopRight,
/*!
* 设置下左、上左角 圆角半径
*/
BAKit_ViewRectCornerTypeBottomLeftAndTopLeft,
/*!
* 设置下右、上右角 圆角半径
*/
BAKit_ViewRectCornerTypeBottomRightAndTopRight,
/*!
* 设置上左、上右、下右角 圆角半径
*/
BAKit_ViewRectCornerTypeBottomRightAndTopRightAndTopLeft,
/*!
* 设置下右、上右、下左角 圆角半径
*/
BAKit_ViewRectCornerTypeBottomRightAndTopRightAndBottomLeft,
/*!
* 设置全部四个角 圆角半径
*/
BAKit_ViewRectCornerTypeAllCorners
};
@interface UIView (BARectCorner)
/**
设置 viewRectCornerType 样式,注意:BAKit_ViewRectCornerType 必须要先设置 viewCornerRadius,才能有效,否则设置无效,如果是 xib,需要要有固定 宽高,要不然 iOS 10 设置无效
*/
@property (nonatomic, assign) BAKit_ViewRectCornerType ba_viewRectCornerType;
/**
设置 view :圆角,如果要全部设置四个角的圆角,可以直接用这个方法,必须要在设置 frame 之后,注意:如果是 xib,需要要有固定 宽高,要不然 iOS 10 设置无效
*/
@property (nonatomic, assign) CGFloat ba_viewCornerRadius;
/**
设置 view :边框边线宽度
*/
@property(nonatomic, assign) CGFloat ba_viewBorderWidth;
/**
设置 view :边框边线颜色
*/
@property(nonatomic, strong) UIColor *ba_viewBorderColor;
/**
快速切圆角
@param type 圆角样式
@param viewCornerRadius 圆角角度
*/
- (void)ba_view_setViewRectCornerType:(BAKit_ViewRectCornerType)type
viewCornerRadius:(CGFloat)viewCornerRadius;
/**
快速切圆角,带边框、边框颜色
@param type 圆角样式
@param viewCornerRadius 圆角角度
@param borderWidth 边线宽度
@param borderColor 边线颜色
*/
- (void)ba_view_setViewRectCornerType:(BAKit_ViewRectCornerType)type
viewCornerRadius:(CGFloat)viewCornerRadius
borderWidth:(CGFloat)borderWidth
borderColor:(UIColor *)borderColor;
@end
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface UIButton (BAState)
/**
* 获取当前borderColor
*/
@property(nonatomic, readonly, strong) UIColor *ba_currentBorderColor;
/**
* 获取当前backgroundColor
*/
@property(nonatomic, readonly, strong) UIColor *ba_currentBackgroundColor;
/**
* 获取当前titleLabelFont
*/
@property(nonatomic, readonly, strong) UIFont *ba_currentTitleLabelFont;
/**
* 切换按钮状态时,执行动画的时间,默认0.25s(只有动画执行完毕后,才能会执行下一个点击事件)
*/
@property (nonatomic, assign) NSTimeInterval ba_animatedDuration;
/**
* 设置不同状态下的borderColor(支持动画效果)
*/
- (void)ba_buttonSetborderColor:(UIColor *)borderColor forState:(UIControlState)state animated:(BOOL)animated;
/**
* 设置不同状态下的backgroundColor(支持动画效果)
*/
- (void)ba_buttonSetBackgroundColor:(UIColor *)backgroundColor forState:(UIControlState)state animated:(BOOL)animated;
/**
* 设置不同状态下的titleLabelFont
*/
- (void)ba_buttonSetTitleLabelFont:(UIFont *)titleLabelFont forState:(UIControlState)state;
/**
* 获取某个状态的borderColor
*/
- (UIColor *)ba_buttonBorderColorForState:(UIControlState)state;
/**
* 获取某个状态的backgroundColor
*/
- (UIColor *)ba_buttonBackgroundColorForState:(UIControlState)state;
/**
* 获取某个状态的titleLabelFont
*/
- (UIFont *)ba_buttonTitleLabelFontForState:(UIControlState)state;
#pragma mark - 使用key-value方式设置
/**
* key:@(UIControlState枚举)
* 注:此方式无动画
*/
- (void)ba_buttonConfigBorderColors:(NSDictionary <NSNumber *,UIColor *>*)borderColors;
/**
* key:@(UIControlState枚举)
* 注:此方式无动画
*/
- (void)ba_buttonConfigBackgroundColors:(NSDictionary <NSNumber *,UIColor *>*)backgroundColors;
/**
* key:@(UIControlState枚举)
*/
- (void)ba_buttonConfigTitleLabelFont:(NSDictionary <NSNumber *,UIFont *>*)titleLabelFonts;
@end
NS_ASSUME_NONNULL_END
#import <UIKit/UIKit.h>
@interface UIButton (BACountDown)
@property (nonatomic, copy) void(^timeStoppedCallback)();
/**
设置倒计时的间隔和倒计时文案
@param duration 倒计时时间
@param format 可选,传nil默认为 @"%zd秒"
*/
- (void)ba_countDownWithTimeInterval:(NSTimeInterval)duration countDownFormat:(NSString *)format;
/**
* invalidate timer
*/
- (void)ba_cancelTimer;
@end
// 示例1:
// 注意:文字、字体大小、图片等设置一定要在设置 CGFloat padding = 10;
CGFloat viewCornerRadius = 15;
[self.normalButton ba_button_setButtonLayoutType:BAKit_ButtonLayoutTypeNormal padding:padding];
[self.normalButton ba_button_setViewRectCornerType:BAKit_ViewRectCornerTypeBottomRightAndTopRightAndBottomLeft viewCornerRadius:viewCornerRadius borderWidth:2.0f borderColor:BAKit_Color_RandomRGB()];
// 示例2:
- (void)setupNavi
{
CGRect frame = CGRectMake(0, 0, 80, 40);
UIButton *navi_rightButton = [UIButton ba_creatButtonWithFrame:frame title:@"xib" selTitle:nil titleColor:BAKit_Color_Red titleFont:nil image:[UIImage imageNamed:@"tabbar_mainframeHL"] selImage:nil padding:2 buttonPositionStyle:BAKit_ButtonLayoutTypeCenterImageRight viewRectCornerType:BAKit_ViewRectCornerTypeAllCorners viewCornerRadius:20 target:self selector:@selector(handleRightNaviButtonAction)];
navi_rightButton.backgroundColor = BAKit_Color_RandomRGB();
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:navi_rightButton];
UIButton *navi_leftButton = [UIButton ba_creatButtonWithFrame:frame title:@"state" selTitle:nil titleColor:BAKit_Color_Red titleFont:nil image:[UIImage imageNamed:@"tabbar_mainframeHL"] selImage:nil padding:2 buttonPositionStyle:BAKit_ButtonLayoutTypeCenterImageRight viewRectCornerType:BAKit_ViewRectCornerTypeAllCorners viewCornerRadius:20 target:self selector:@selector(handleLeftNaviButtonAction)];
[navi_rightButton ba_view_setViewRectCornerType:BAKit_ViewRectCornerTypeBottomLeftAndTopLeft viewCornerRadius:20 borderWidth:2.0f borderColor:BAKit_Color_RandomRGB()];
navi_rightButton.backgroundColor = BAKit_Color_RandomRGBA();
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:navi_leftButton];
}
// 示例3:倒计时
- (IBAction)countDownClick:(UIButton *)sender {
sender.userInteractionEnabled = NO;
__block UIButton *btn = sender;
[sender ba_countDownWithTimeInterval:60 countDownFormat:@"剩余 %zd"];
[sender setTimeStoppedCallback:^{
[btn setTitle:@"倒计时" forState:UIControlStateNormal];
}];
}
- (IBAction)skipClick:(UIButton *)sender {
__block UIButton *btn = sender;
[sender ba_countDownWithTimeInterval:5 countDownFormat:@"跳过 %zd"];
[sender setTimeStoppedCallback:^{
[btn setTitle:@"跳过" forState:UIControlStateNormal];
}];
}
// 示例4:测试大图片 button 的 layout 布局,如果你的图片宽高大于 自身的宽高,怎需要压缩后再配置布局
- (void)test2
{
self.button.hidden = NO;
}
- (void)viewDidLayoutSubviews {
[super viewDidLayoutSubviews];
CGFloat min_x = 0;
CGFloat min_y = 0;
CGFloat min_w = 0;
CGFloat min_h = 0;
min_x = 100;
min_y = 100;
min_w = BAKit_SCREEN_WIDTH - min_x * 2;
min_h = min_w;
self.button.frame = CGRectMake(min_x, min_y, min_w, min_h);
// 根据宽比例去缩放图片,注意:如果button 的图片 太宽,需要调用此方法去等比压缩图片,压缩完的图片,记得要在frame 之后设置图片
UIImage *stretchableButtonImage = [[UIImage imageNamed:@"条形码.jpg"] ba_imageScaleToWidth:_button.frame.size.width];
[_button setImage:stretchableButtonImage forState:UIControlStateNormal];
// button 图文布局也要在图片设置之后设置才能有效
_button.ba_buttonLayoutType = BAKit_ButtonLayoutTypeCenterImageTop;
}
#pragma mark - 测试大图片 button 的 layout 布局,如果你的图片宽高大于 自身的宽高,怎需要压缩后再配置布局
- (UIButton *)button
{
if (!_button)
{
// 测试大图片 button 的 layout 布局,如果你的图片宽高大于 自身的宽高,怎需要压缩后再配置布局
// 原生写法
// _button = [UIButton buttonWithType:UIButtonTypeCustom];
// [_button setTitle:@"123456" forState:UIControlStateNormal];
// [_button setTitleColor:BAKit_Color_Red_pod forState:UIControlStateNormal];
// _button.backgroundColor = BAKit_Color_Gray_10_pod;
// BAButton 简单写法
_button = [UIButton ba_buttonWithFrame:CGRectZero title:@"123456" titleColor:BAKit_Color_Red_pod titleFont:[UIFont systemFontOfSize:15] backgroundColor:BAKit_Color_Gray_10_pod];
[self.view addSubview:_button];
}
return _button;
}
其他示例可下载demo查看源码!
欢迎使用 【BAHome】 系列开源代码 ! 如有更多需求,请前往:【https://github.com/BAHome】
最新更新时间:2017-07-07 【倒叙】
最新Version:【Version:2.5.5】
更新内容:
2.5.5.1、重构 <UIButton+BAKit.h>类,新增多种快速创建 button 的方法
2.5.5.2、新增多种快速创建 自定义 button 的方法
最新更新时间:2017-06-27 【倒叙】
最新Version:【Version:2.5.4】
更新内容:
2.5.4.1、新增 大图片 button 的 layout 布局,如果你的图片宽高大于 自身的宽高,怎需要压缩后再配置布局,具体看 demo test2
最新更新时间:2017-06-23 【倒叙】
最新Version:【Version:2.5.3】
更新内容:
2.5.3.1、优化部分宏定义
最新更新时间:2017-06-23 【倒叙】
最新Version:【Version:2.5.2】
更新内容:
2.5.2.1、优化部分宏定义
最新更新时间:2017-06-20 【倒叙】
最新Version:【Version:2.5.1】
更新内容:
2.5.1.1、新增 view 的 border 的创建,可以自定义圆角、边框、边框颜色等(感谢群里 @北京-大腿 同学提出的 需求!)
2.5.1.2、修复 xib 下圆角右边无效的bug,注意:如果是 xib,需要要有固定 宽高,要不然 iOS 10 设置无效(感谢群里 @北京-小黑 同学提出的 bug!)
最新更新时间:2017-06-19 【倒叙】
最新Version:【Version:2.5.0】
更新内容:
2.5.0.1、优化命名规范,更换了全局统一属性命名和方法命名,如果更新有报错的地方,大家别急,看 .h 文件更换过来即可,后期推出的 BAKit 系列产品,命名都将统一规范,在此给大家带来的不便之处,向大家道歉!希望大家谅解!多谢体谅!
最新更新时间:2017-06-01 【倒叙】
最新Version:【Version:2.4.3】
更新内容:
2.4.3.1、快速创建 button 方法改为类方法,可直接调用!
最新更新时间:2017-06-01 【倒叙】
最新Version:【Version:2.4.2】
更新内容:
2.4.2.1、优化注释
最新更新时间:2017-06-01 【倒叙】
最新Version:【Version:2.4.1】
更新内容:
2.4.1.1、优化注释,注意:文字、字体大小、图片等设置一定要在设置 ba_button_setBAButtonLayoutType 之前设置,要不然计算会以默认字体大小计算,导致位置偏移
最新更新时间:2017-05-27 【倒叙】
最新Version:【Version:2.4.0】
更新内容:
2.4.0.1、此版本由 子丰大神 亲自改版,再次感谢 子丰大神
2.4.0.2、新增 UIButton 各种状态下背景颜色、字体、border、font、动画等的监测及改变
2.4.0.3、新增 UIButton 倒计时的封装,两行代码搞定倒计时!
2.4.0.4、优化整体代码结构,代码规范!
最新更新时间:2017-05-26 【倒叙】
最新Version:【Version:2.3.2】
更新内容:
2.3.2.1、优化代码结构,修复 frame 改变后 padding 无法更改的问题!
最新更新时间:2017-05-24 【倒叙】
最新Version:【Version:2.3.1】
更新内容:
2.3.1.1、新增:padding_inset,文字或图片距离 button 左右边界的最小距离,默认为:5
最新更新时间:2017-05-20 【倒叙】
最新Version:【Version:2.3.0】
更新内容:
2.3.0.1、用分类全新重构 BAButton,代码配置更灵活
2.3.0.2、可以自由设置 button 的文字和图片的布局、间距、每个角的切圆角
2.3.0.3、全面适配 纯代码、xib、storyboard
2.3.0.4、版本改动较大,希望大家谅解,如果用老版本的 BAButton,可以参考demo 更换新版本,后期改动不大
-
2017-04-24
最新Version:【Version:2.2.1】
更新内容:
2.2.1.1、新增快速创建button 的demo,和 自定义 naviButton demo -
2017-03-15
最新Version:【Version:2.2.1】
更新内容:
2.2.1.1、button 的 角半径 buttonCornerRadii,默认 CGSizeMake(0, 0) -
2017-03-02
最新Version:【Version:2.2.0】
更新内容:
2.2.0.1、修复 buttonCornerRadii 只能在添加frame 后设置才能有效的问题,现在可以随意设置
2.2.0.2、新增设置文字或和图片间距,举个🌰:self.padding = 10; -
2017-02-28 【倒叙】
最新Version:【Version:2.1.0】
更新内容:
2.1.1、继承自 UIButton 可以像 UIButton 一样随便添加系统属性
2.1.2、可以单独设置文字和图片的位置
2.1.3、还可以设置文字或者图片间距
2.1.4、可以设置按钮的任意一个角的圆角度数
2.1.4、全面适配纯代码、xib、storyboard -
2016.03.04
pod 最新上架,修复部分已知bug,代码更精简!
1、开发中遇到 bug,希望小伙伴儿们能够及时反馈与我们 BAHome 团队,我们必定会认真对待每一个问题!
2、以后提需求和 bug 的同学,记得把 git 或者博客链接给我们,我直接超链到你们那里!希望大家积极参与测试!
1、QQ 群 479663605
【注意:此群为 2 元 付费群,介意的小伙伴儿勿扰!】
孙博岩
QQ:137361770
git:https://github.com/boai
简书:http://www.jianshu.com/u/95c9800fdf47
微博:
马景丽
QQ:1253540493
git:https://github.com/MaJingli
陆晓峰
QQ:442171865
git:https://github.com/zeR0Lu
陈集
QQ:3161182978
git:https://github.com/chenjipdc
简书:http://www.jianshu.com/u/90ae559fc21d
任子丰
QQ:459643690
git:https://github.com/renzifeng
吴丰收
QQ:498121294
石少庸
QQ:363605775
git:https://github.com/CrazyCoderShi
简书:http://www.jianshu.com/u/0726f4d689a3
开发使用 最新版本 Xcode,理论上支持 iOS 8 及以上版本,如有版本适配问题,请及时反馈!多谢合作!
感谢 BAHome 团队成员倾力合作,后期会推出一系列 常用 UI 控件的封装,大家有需求得也可以在 issue 提出,如果合理,我们会尽快推出新版本!
BAHome 的发展离不开小伙伴儿的信任与推广,再次感谢各位小伙伴儿的支持!