|
//
// topicDescCell.h
// ThePaperHD
//
// Created by scar1900 on 15/5/12.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol topicDescCellDelegate <NSObject>
- (void)clickToExpand:(BOOL)isExpand;
@end
@interface topicDescCell : UITableViewCell
@property(nonatomic, assign)BOOL expand;
@property(nonatomic, strong)NSString *topicDesc;
@property(nonatomic, assign)CGFloat padding;
@property(nonatomic, weak)id<topicDescCellDelegate> delegate;
@end
|