|
//
// CleanTableViewCell.h
// ThePaperBase
//
// Created by zhousan on 15/8/14.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
//@protocol cleanDelegate <NSObject>
//
//- (void)cleanBtnClick:(UIButton *)btn;
//
//@end
@interface CleanTableViewCell : UITableViewCell
//@property (nonatomic, weak) id<cleanDelegate> delegate;
@property (nonatomic, strong) NSString *fileString;
@end
|