洛阳学员端
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.

22 lines
793 B

7 months ago
  1. //
  2. // DTFUIElementManager.h
  3. // BioAuthEngine
  4. //
  5. // Created by richard on 08/08/2017.
  6. // Copyright © 2017 DTF. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface DTFUIElementManager : NSObject
  10. + (UIView *)generateUIViewWithFrame:(CGRect)frame andBackGroundColor:(UIColor *)backGroundColor andAlpha:(float)alpha;
  11. + (UILabel *)generateUIlabelWithFrame:(CGRect)frame andColor:(UIColor *)color andFont:(UIFont*)font andAlpha:(float)alpha andBackGroundColor:(UIColor *)backGroundColor andLineBreakMode:(NSLineBreakMode)breakMode andAlignment:(NSTextAlignment) alignment;
  12. + (UIImageView *)generateUIImageViewWithFrame:(CGRect)frame andImageName:(NSString *)imageName andContentMode:(UIViewContentMode)contentMode;
  13. + (UIImage *)generateUIImageWithName:(NSString *)imageName;
  14. @end