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.
22 lines
465 B
22 lines
465 B
// |
|
// WTListButtonCell.h |
|
// iosMemoryPalace |
|
// |
|
// Created by yuklng on 2017/5/9. |
|
// Copyright © 2017年 yuklng. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
|
|
@interface WTListButtonCell : UITableViewCell |
|
|
|
@property (nonatomic,strong) UIColor* textNormalColor; |
|
|
|
@property (nonatomic,strong) UIColor* textHighlightedColor; |
|
|
|
@property (nonatomic,strong) UIColor* backgroundNormalColor; |
|
|
|
@property (nonatomic,strong) UIColor* backgroundHighlighteColor; |
|
|
|
|
|
@end
|
|
|