NIMTeamSwitchTableViewCell.h 425 B

12345678910111213141516171819
  1. //
  2. // NIMTeamSwitchTableViewCell.h
  3. // NIM
  4. //
  5. // Created by amao on 5/29/15.
  6. // Copyright (c) 2015 Netease. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol NIMTeamSwitchProtocol <NSObject>
  10. - (void)onStateChanged:(BOOL)on;
  11. @end
  12. @interface NIMTeamSwitchTableViewCell : UITableViewCell
  13. @property (strong, nonatomic) UISwitch *switcher;
  14. @property (weak, nonatomic) id<NIMTeamSwitchProtocol> switchDelegate;
  15. @end