iOS AILinkBleSDK - 蓝牙SDK
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819
  1. //
  2. // UIButton+WZAdd.h
  3. // 常用UI控件封装
  4. //
  5. // Created by iot_iMac on 2018/6/21.
  6. // Copyright © 2018年 iot_iMac. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIButton (WZAdd)
  10. /*
  11. * 注意:如果needRoundCorner=YES,则必须设置frame的height值,否则无法实现圆角
  12. */
  13. + (UIButton *)createWithFrame:(CGRect)frame bgColor:(UIColor *)bgColor font:(UIFont *)font norTitle:(NSString *)norTitle norTitleColor:(UIColor *)norTitleColor norImage:(UIImage *)norImage borderColor:(UIColor *)borderColor needRoundCorner:(BOOL)needRoundCorner target:(id)target action:(SEL)action;
  14. @end