Files
mier_ios/SweetParty/第三方库/SDCycleScrollView/SDCollectionViewCell.h

52 lines
1.7 KiB
C
Raw Permalink Normal View History

2025-08-11 10:43:19 +08:00
//
// SDCollectionViewCell.h
// SDCycleScrollView
//
// Created by aier on 15-3-22.
// 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>
@interface SDCollectionViewCell : UICollectionViewCell
@property (weak, nonatomic) UIImageView *imageView;
@property (copy, nonatomic) NSString *title;
@property (nonatomic, strong) UIColor *titleLabelTextColor;
@property (nonatomic, strong) UIFont *titleLabelTextFont;
@property (nonatomic, strong) UIColor *titleLabelBackgroundColor;
@property (nonatomic, assign) CGFloat titleLabelHeight;
@property (nonatomic, assign) NSTextAlignment titleLabelTextAlignment;
@property (nonatomic, assign) BOOL hasConfigured;
/** 只展示文字轮播 */
@property (nonatomic, assign) BOOL onlyDisplayText;
@end