| 12345678910111213141516171819 |
- //
- // SetCell.h
- // YBVideo
- //
- // Created by cat on 16/3/13.
- // Copyright © 2016年 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface SetCell : UITableViewCell
- +(SetCell *)cellWithTableView:(UITableView *)tableView;
- @property (weak, nonatomic) IBOutlet UILabel *labContrName;
- @property (weak, nonatomic) IBOutlet UILabel *labDetail;
- @property (weak, nonatomic) IBOutlet UIImageView *arrowIV;
- @property (weak, nonatomic) IBOutlet UIButton *switchBtn;
- @end
|