Du kannst nicht mehr als 25 Themen auswählen
Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
123456789101112131415 |
- //
- // UILabel+WZAdd.h
- // 常用UI控件封装
- //
- // Created by iot_iMac on 2018/6/21.
- // Copyright © 2018年 iot_iMac. All rights reserved.
- //
-
- #import <UIKit/UIKit.h>
-
- @interface UILabel (WZAdd)
-
- + (UILabel *)createWithFrame:(CGRect)frame bgColor:(UIColor *)bgColor text:(NSString *)text textColor:(UIColor *)textColor font:(UIFont *)font align:(NSTextAlignment)align;
-
- @end
|