SetCell.h 477 B

12345678910111213141516171819
  1. //
  2. // SetCell.h
  3. // YBVideo
  4. //
  5. // Created by cat on 16/3/13.
  6. // Copyright © 2016年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface SetCell : UITableViewCell
  10. +(SetCell *)cellWithTableView:(UITableView *)tableView;
  11. @property (weak, nonatomic) IBOutlet UILabel *labContrName;
  12. @property (weak, nonatomic) IBOutlet UILabel *labDetail;
  13. @property (weak, nonatomic) IBOutlet UIImageView *arrowIV;
  14. @property (weak, nonatomic) IBOutlet UIButton *switchBtn;
  15. @end