PushMaTableViewCell.h 460 B

123456789101112131415161718192021222324
  1. //
  2. // PushMaTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by GuoMs on 16/7/19.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol TapDelegate <NSObject>
  10. - (void)handleToTurnPushManage;
  11. @end
  12. @interface PushMaTableViewCell : UITableViewCell
  13. @property (weak, nonatomic) IBOutlet UISwitch *turnOrOff;
  14. @property (weak, nonatomic) IBOutlet UILabel *leftNameLabel;
  15. @property (nonatomic, weak) id<TapDelegate>deleagte;
  16. @end