单军华
2018-03-29 89d748b77b478905732e60f0b4c5807c274b6565
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
//  ICCommonItemCell.h
//  ICStaticPage
//
// github地址:https://github.com/corderguo/StaticPage
//
//  Created by Mr.Guo on 15/5/28.
//  Copyright © 2016年 XianZhuangGuo. All rights reserved.
//
 
#import <UIKit/UIKit.h>
#import "ICSettingArrowItem.h"
#import "ICSettingSwitchItem.h"
#import "ICSettingNoneItem.h"
#import "ICCommonItem.h"
#import "ICCommonGroup.h"
#import "GloriaLabel.h"
@class ICCommonItemCell;
@protocol ICCommonItemCellDelegate <NSObject>
 
- (void)commonItemCell:(ICCommonItemCell *)cell
                 swith:(UISwitch *)swith;
 
@end
 
@interface ICCommonItemCell : UITableViewCell
 
@property (nonatomic ,strong) ICCommonItem *item;
 
@property (nonatomic, weak) id<ICCommonItemCellDelegate>delegate;
 
@property (nonatomic, strong) GloriaLabel* _nameLabel;
 
+ (instancetype)cellWithTableView:(UITableView *)tableView;
 
 
@end