// // NextCell.h // TabBar // // Created by Developer on 2/28/12. // Copyright (c) 2012 __MyCompanyName__. All rights reserved. // #import @interface Cell : UITableViewCell { @private UIImageView *backgroundImage; @private UILabel *idLabel; @private UILabel *hours; @private UILabel *titleLabel; @private UILabel *teacherLabel; } -(void) setFields:(CGRect) frame withImage:(NSString*) imageName withId:(NSString*) idC withTitle:(NSString*) titleC withTeacher:(NSString*) teacherC withHours:(NSString*) hoursC; @end