You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
662 B
26 lines
662 B
4 years ago
|
//
|
||
|
// WXYZ_AnnouncementViewCollectionViewCell.h
|
||
|
// GKADRollingView
|
||
|
//
|
||
|
// Created by Gao on 2017/2/16.
|
||
|
// Copyright © 2017年 gao. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "TFBookRackModel.h"
|
||
|
|
||
|
@interface WXYZ_AnnouncementViewCollectionViewCell : UICollectionViewCell
|
||
|
|
||
|
@property (nonatomic, strong) TFAnnouncementModel *announcementModel;
|
||
|
|
||
|
@property (nonatomic, strong) UIColor *titleColor; // default is orange
|
||
|
|
||
|
@property (nonatomic, strong) UIFont *textFont; // default is 12
|
||
|
|
||
|
@property (nonatomic, strong) UIColor *textColor; // default is black
|
||
|
|
||
|
/// 文字是否居中
|
||
|
@property (nonatomic, assign) BOOL isCenter;
|
||
|
|
||
|
@end
|