|
//
// MessageTableViewCell.h
// ThePaperBase
//
// Created by zhousan on 15/8/14.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol messageDelegate <NSObject>
- (void)switchValueWith:(BOOL)isOn;
@end
@interface MessageTableViewCell : UITableViewCell
- (void)setSwitchValue:(BOOL)on;
@property (nonatomic, weak) id<messageDelegate> delegate;
@end
|