UILabel+MyLabel.h 469 B

12345678910111213141516
  1. //
  2. // UILabel+MyLabel.h
  3. // PopupWindow
  4. //
  5. // Created by 杨仁伟 on 2017/5/16.
  6. // Copyright © 2017年 yrw. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UILabel (MyLabel)
  10. + (UILabel *)quickLabelWithFrame: (CGRect)frame color: (UIColor *)color font: (NSInteger)font text: (NSString *)text superView: (UIView *)superView;
  11. + (UILabel *)quickCreatePopupWindowRoomListLabelWithFrame:(CGRect)frame text:(NSString *)text supView:(UIView *)supView;
  12. @end