#ifndef __CHATCELL_H__ #define __CHATCELL_H__ #import #import #import #import #import @interface ChatCell : UITableViewCell { UILabel *nameLabel_; UILabel *chatLabel_; } - (id)initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier; - (void)setup:(NSString *)chat user:(NSString *)user size:(CGSize)size; @end #endif // __CHATCELL_H__