DTFUIElementManager.h 793 B

12345678910111213141516171819202122
  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