// // FKGroupScheduleCell.h // FirstLink // // Created by jack on 15/10/7. // Copyright © 2015年 FirstLink. All rights reserved. // #import @interface FKGroupScheduleCell : UITableViewCell @property (nonatomic, strong) NSArray *imgUrlArray; @property (nonatomic, strong) UILabel *titleLabel; @property (nonatomic, strong) UILabel *timeLabel; @property (nonatomic, strong) UIImageView *groupStatusIcon; - (void)configTitleLabel:(NSString *)status title:(NSString *)title; - (void)configWithMemberCount:(NSUInteger)count imageUrlArray:(NSArray *)imageUrlArray; - (void)refreshTimeInterval:(NSTimeInterval)timeInterval withTotal:(NSTimeInterval)total; @end