|
//
// settingListCell.h
// ThePaperHD
//
// Created by liyuan on 15/4/10.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol settingListCellDelegate <NSObject>
-(void) gotoNightMode:(BOOL) isGoto;
@end
@interface settingListCell : UITableViewCell
@property (nonatomic ,strong) NSIndexPath *indexPath;
@property(nonatomic, assign)BOOL isShowClearStatus;
@property(nonatomic, assign)BOOL isPushOpen;
@property(nonatomic, weak)id<settingListCellDelegate> settingListCellDelegate;
@end
|