// // TabBarViewController.h // TabBar // // Created by Developer on 2/27/12. // Copyright (c) 2012 __MyCompanyName__. All rights reserved. // #import #import "TabBar.h" #import "XMLParser.h" @interface RootViewController : UIViewController { @private NSArray* previousCourses; //array of previous courses according to current time @private NSArray* nextCourses; //array of following courses according to current time @private UITableView *coursesTable; //the tableview used to display both previous and following courses @private UIButton *sliderButton; // if pressed, the previous courses will slide on screen or off screen @private NSDate *date; // current date @private NSDateFormatter *formatter; // used format the date so it can be displayed @private XMLParser *parser; //our XML parser @private UILabel *dateLabel; @private UILabel *noClasses; @private int currentDay; @private NSString *room; } -(id) initWithRoomNumber:(NSString*)room; @end