-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTeamMenuViewController.h
40 lines (29 loc) · 994 Bytes
/
TeamMenuViewController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
// TeamMenuViewController.h
// Scorekeeper Beta
//
// Created by Ali ElSayed on 11/8/12.
// Copyright (c) 2012 Ali ElSayed. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "Data.h"
#import "ButtonsCell.h"
#import "TextFieldCell.h"
#import "LabelAndTextFieldCell.h"
#import "TeamPlayerMenuViewController.h"
#import "GCDiscreetNotificationView.h"
#import "TennisGameViewController.h"
enum SportType {TEAM_SPORT, INDIVIDUAL_SPORT};
@interface TeamMenuViewController : UITableViewController <UITextFieldDelegate>
{
NSString *sportName;
enum SportType sportType;
Data *nameTextFieldPlaceholders, *intervalLabels, *timeLabels; // Placeholder strings where team/player name goes
NSString *nameField1, *nameField2, *notification;
}
@property (nonatomic, strong) GCDiscreetNotificationView *notificationView;
- (NSString*) sportName;
- (id) sportName: (NSString*) _sportName;
- (IBAction)segmentButtonClicked:(id)sender;
- (IBAction)nextButton:(id)sender;
@end