Inherits from UIViewController
Conforms to UIActionSheetDelegate
UIPickerViewDataSource
UIPickerViewDelegate
Declared in SignupViewController.h
SignupViewController.m

Properties

checkGroupButton

@property (weak, nonatomic) IBOutlet UIButton *checkGroupButton

emailAddress

@property (weak, nonatomic) IBOutlet UITextField *emailAddress

gameFormat1

@property (weak, nonatomic) IBOutlet UISwitch *gameFormat1

gameFormat2

@property (weak, nonatomic) IBOutlet UISwitch *gameFormat2

gameFormat3

@property (weak, nonatomic) IBOutlet UISwitch *gameFormat3

gameFormat4

@property (weak, nonatomic) IBOutlet UISwitch *gameFormat4

group

@property (weak, nonatomic) IBOutlet UITextField *group

passedInGameFormat

@property (assign, nonatomic) int passedInGameFormat

passedInGroup

@property (nonatomic, strong) NSString *passedInGroup

passedInSendNotification

@property (assign, nonatomic) BOOL passedInSendNotification

passedInValues

@property (assign, nonatomic) BOOL passedInValues

password

@property (weak, nonatomic) IBOutlet UITextField *password

pickerView

@property (retain, nonatomic) IBOutlet UIPickerView *pickerView

useExistingButton

@property (weak, nonatomic) IBOutlet UIButton *useExistingButton

username

@property (weak, nonatomic) IBOutlet UITextField *username

Instance Methods

alertView:clickedButtonAtIndex:

Standard iOS Alert Box button handlers

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex

Parameters

alertView

The Alert View

buttonIndex

Index to the button that was clicked

Declared In

SignupViewController.m

didReceiveMemoryWarning

Standard iOS delegate when memory warning.

- (void)didReceiveMemoryWarning

Return Value

<#return value description#>

Declared In

SignupViewController.m

displayGroup:

Update the Group Edit control

- (void)displayGroup:(NSInteger)groupIndex

Parameters

groupIndex

Index of Group to display

Declared In

SignupViewController.m

displayGroupPicker

Toggle Group Picker View.

- (void)displayGroupPicker

Declared In

SignupViewController.m

numberOfComponentsInPickerView:

Standard delegate for PickerView for number of components in the picker

- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)thepickerView

Parameters

thepickerView

The PickerView

Return Value

Return count of Components

Declared In

SignupViewController.m

onClickCheckGroup:

Handler for the Check Group button

- (IBAction)onClickCheckGroup:(id)sender

Parameters

sender

Sender of the event

Declared In

SignupViewController.m

onClickGameFormat1:

Handler for the Game Format 1 (Wins/Losses) button

- (IBAction)onClickGameFormat1:(id)sender

Parameters

sender

Sender of the event

Declared In

SignupViewController.m

onClickGameFormat2:

Handler for the Game Format 2 (Weighted Wins/Losses) button

- (IBAction)onClickGameFormat2:(id)sender

Parameters

sender

Sender of the event

Declared In

SignupViewController.m

onClickGameFormat3:

Handler for the Game Format 3 (Point Spread) button

- (IBAction)onClickGameFormat3:(id)sender

Parameters

sender

Sender of the event

Declared In

SignupViewController.m

onClickGameFormat4:

Handler for the Game Format 4 (Weighted Point Spread) button

- (IBAction)onClickGameFormat4:(id)sender

Parameters

sender

Sender of the event

Declared In

SignupViewController.m

onClickGroupPickCancel:

Button handler for the Weight Picker Cancel button.

- (IBAction)onClickGroupPickCancel:(id)sender

Parameters

sender

The sender for the Event

Declared In

SignupViewController.m

onClickGroupPickDone:

Button handler for the Group Picker Done button.

- (IBAction)onClickGroupPickDone:(id)sender

Parameters

sender

The sender for the Event

Declared In

SignupViewController.m

onClickHelpSystem:

Handler for the Help System button

- (IBAction)onClickHelpSystem:(id)sender

Parameters

sender

Sender of the event

Declared In

SignupViewController.m

onClickSignup:

Handler for the Sign Up button

- (IBAction)onClickSignup:(id)sender

Parameters

sender

Sender of the event

Declared In

SignupViewController.m

onGetGroupsButtonClick:

Handler for the Get Existing Groups button

- (IBAction)onGetGroupsButtonClick:(id)sender

Parameters

sender

Sender of the event

Declared In

SignupViewController.m

pickerView:numberOfRowsInComponent:

Standard delegate for PickerView for number of rows in the picker

- (NSInteger)pickerView:(UIPickerView *)thepickerView numberOfRowsInComponent:(NSInteger)component

Parameters

thepickerView

The PickerView

component

The PickerView Component

Return Value

Return count of rows

Declared In

SignupViewController.m

pickerView:titleForRow:forComponent:

Standard delegate for PickerView to display rows in the picker

- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component

Parameters

pickerView

The PickerView

row

The row in the PickerView

component

THe PickerView Component

Return Value

Return row display content

Declared In

SignupViewController.m

supportedInterfaceOrientations

Standard iOS delegate to get the allowed orientation of the application.

- (NSUInteger)supportedInterfaceOrientations

Return Value

<#return value description#>

Declared In

SignupViewController.m

textFieldShouldReturn:

Standard iOS delegate for keyboard handling in text boxes.

- (BOOL)textFieldShouldReturn:(UITextField *)textField

Return Value

<#return value description#>

Declared In

SignupViewController.m

viewDidLoad

Load and initialize the Controller for the Sign Up View

- (void)viewDidLoad

Declared In

SignupViewController.m

willAnimateRotationToInterfaceOrientation:duration:

Standard iOS delegate when this view is rotated.

- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)orientation duration:(NSTimeInterval)duration

Parameters

duration

Duration of orientation

toInterfaceOrientation

Orientation being displayed

Declared In

SignupViewController.m