Files
yuyin_ios/SweetParty/第三方库/SDCycleScrollView/UIView+SDExtension.h

45 lines
1.4 KiB
C
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// UIView+SDExtension.h
// SDRefreshView
//
// Created by aier on 15-2-23.
// Copyright (c) 2015年 GSD. All rights reserved.
//
/*
*********************************************************************************
*
* 🌟🌟🌟 SDCycleScrollView交流QQ群185534916 🌟🌟🌟
*
* 使bug请及时以以下任意一种方式联系我们bug并
*
* :GSD_iOS
* Email : gsdios@126.com
* GitHub: https://github.com/gsdios
*
* SDAutoLayout
* Cell和Tableview高度自适应Label和ScrollView内容自适应
* AutoLayout库
* http://www.letv.com/ptv/vplay/24038772.html
* https://github.com/gsdios/SDAutoLayout/blob/master/README.md
* GitHubhttps://github.com/gsdios/SDAutoLayout
*********************************************************************************
*/
#import <UIKit/UIKit.h>
#define SDColorCreater(r, g, b, a) [UIColor colorWithRed:(r / 255.0) green:(g / 255.0) blue:(b / 255.0) alpha:a]
@interface UIView (SDExtension)
@property (nonatomic, assign) CGFloat sd_height;
@property (nonatomic, assign) CGFloat sd_width;
@property (nonatomic, assign) CGFloat sd_y;
@property (nonatomic, assign) CGFloat sd_x;
@end