Passer Rating iOS
1.0
iOS demo project for Xcode 4 Unleashed
|
00001 // 00002 // GameListController.h 00003 // Passer Rating 00004 // 00005 // Created by Xcode User on 6/25/11. 00006 // Copyright 2011 Fritz Anderson. All rights reserved. 00007 // 00008 00009 #import <UIKit/UIKit.h> 00010 00011 @class Passer; 00012 00013 @interface GameListController : UIViewController 00014 <UITableViewDelegate, UITableViewDataSource> 00015 { 00016 UILabel *fullNameLabel; 00017 UILabel *passerRatingLabel; 00018 UILabel *currentTeamLabel; 00019 UILabel *datesLabel; 00020 UILabel *attemptsLabel; 00021 UILabel *completionsLabel; 00022 UILabel *yardsLabel; 00023 UILabel *touchdownsLabel; 00024 UILabel *interceptionsLabel; 00025 UITableView *tableView; 00026 00027 NSArray * arrangedGamesCache; 00028 } 00029 00030 00031 @property(nonatomic, retain) Passer * passer; 00032 @property(nonatomic, readonly) NSArray * arrangedGames; 00033 00034 @property (nonatomic, retain) IBOutlet UILabel *fullNameLabel; 00035 @property (nonatomic, retain) IBOutlet UILabel *passerRatingLabel; 00036 @property (nonatomic, retain) IBOutlet UILabel *currentTeamLabel; 00037 @property (nonatomic, retain) IBOutlet UILabel *datesLabel; 00038 @property (nonatomic, retain) IBOutlet UILabel *attemptsLabel; 00039 @property (nonatomic, retain) IBOutlet UILabel *completionsLabel; 00040 @property (nonatomic, retain) IBOutlet UILabel *yardsLabel; 00041 @property (nonatomic, retain) IBOutlet UILabel *touchdownsLabel; 00042 @property (nonatomic, retain) IBOutlet UILabel *interceptionsLabel; 00043 @property (nonatomic, retain) IBOutlet UITableView *tableView; 00044 00045 @end