// // ICCommonItemCell.h // ICStaticPage // // github地址:https://github.com/corderguo/StaticPage // // Created by Mr.Guo on 15/5/28. // Copyright © 2016年 XianZhuangGuo. All rights reserved. // #import #import "ICSettingArrowItem.h" #import "ICSettingSwitchItem.h" #import "ICSettingNoneItem.h" #import "ICCommonItem.h" #import "ICCommonGroup.h" #import "GloriaLabel.h" @class ICCommonItemCell; @protocol ICCommonItemCellDelegate - (void)commonItemCell:(ICCommonItemCell *)cell swith:(UISwitch *)swith; @end @interface ICCommonItemCell : UITableViewCell @property (nonatomic ,strong) ICCommonItem *item; @property (nonatomic, weak) iddelegate; @property (nonatomic, strong) GloriaLabel* _nameLabel; + (instancetype)cellWithTableView:(UITableView *)tableView; @end