GJRatioAutoLayout.h 618 B

12345678910111213141516171819202122232425262728
  1. //
  2. // GJRatioAutoLayout.h
  3. // GJRatioAutoLayout
  4. //
  5. // Created by wangyutao on 16/1/3.
  6. // Copyright © 2016年 wangyutao. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "GJRatioAutoLayoutDefine.h"
  10. #import "UIView+GJRatioAutoLayout.h"
  11. #import "UILabel+GJRatioAutoLayout.h"
  12. typedef NS_ENUM(NSUInteger, GJScreenSizeType) {
  13. GJScreenSizeTypeiPhone4or5,
  14. GJScreenSizeTypeiPhone6,
  15. GJScreenSizeTypeiPhone6Plus,
  16. };
  17. @interface GJRatioAutoLayout : NSObject
  18. + (void)startWithScreenSizeType:(GJScreenSizeType)type;
  19. + (GJScreenSizeType)getScreenSizeType;
  20. + (NSInteger)getScreenSizeWidth;
  21. @end