口袋优选

UIView+SDExtension.h 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // UIView+SDExtension.h
  3. // SDRefreshView
  4. //
  5. // Created by aier on 15-2-23.
  6. // Copyright (c) 2015年 GSD. All rights reserved.
  7. //
  8. /*
  9. *********************************************************************************
  10. *
  11. * 🌟🌟🌟 新建SDCycleScrollView交流QQ群:185534916 🌟🌟🌟
  12. *
  13. * 在您使用此自动轮播库的过程中如果出现bug请及时以以下任意一种方式联系我们,我们会及时修复bug并
  14. * 帮您解决问题。
  15. * 新浪微博:GSD_iOS
  16. * Email : gsdios@126.com
  17. * GitHub: https://github.com/gsdios
  18. *
  19. * 另(我的自动布局库SDAutoLayout):
  20. * 一行代码搞定自动布局!支持Cell和Tableview高度自适应,Label和ScrollView内容自适应,致力于
  21. * 做最简单易用的AutoLayout库。
  22. * 视频教程:http://www.letv.com/ptv/vplay/24038772.html
  23. * 用法示例:https://github.com/gsdios/SDAutoLayout/blob/master/README.md
  24. * GitHub:https://github.com/gsdios/SDAutoLayout
  25. *********************************************************************************
  26. */
  27. #import <UIKit/UIKit.h>
  28. #define SDColorCreater(r, g, b, a) [UIColor colorWithRed:(r / 255.0) green:(g / 255.0) blue:(b / 255.0) alpha:a]
  29. @interface UIView (SDExtension)
  30. @property (nonatomic, assign) CGFloat sd_height;
  31. @property (nonatomic, assign) CGFloat sd_width;
  32. @property (nonatomic, assign) CGFloat sd_y;
  33. @property (nonatomic, assign) CGFloat sd_x;
  34. @end