ProtocolTableViewCell.h 548 B

123456789101112131415161718192021222324
  1. //
  2. // ProtocolTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/8/10.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol lookProtocolDelegate <NSObject>
  10. //进入协议的控制器
  11. - (void)goToProtocolController;
  12. @end
  13. @interface ProtocolTableViewCell : UITableViewCell
  14. @property (nonatomic, weak) id<lookProtocolDelegate>delegate;
  15. @property (nonatomic, strong) UIView *buttomView;
  16. @property (nonatomic, strong) UILabel *nameLabel;
  17. @property (nonatomic, strong) UIButton *protocolButton;
  18. @end