Inherits from UIViewController
Declared in LoginViewController.h
LoginViewController.m

Properties

forgotPasswordButton

@property (weak, nonatomic) IBOutlet UIButton *forgotPasswordButton

loginButton

@property (weak, nonatomic) IBOutlet UIButton *loginButton

password

@property (weak, nonatomic) IBOutlet UITextField *password

signupButton

@property (weak, nonatomic) IBOutlet UIButton *signupButton

username

@property (weak, nonatomic) IBOutlet UITextField *username

Instance Methods

didReceiveMemoryWarning

Standard iOS delegate for handling memory warnings

- (void)didReceiveMemoryWarning

Declared In

LoginViewController.m

onClickLogin:

Handler for the Login button

- (IBAction)onClickLogin:(id)sender

Parameters

sender

The sender of the event

Declared In

LoginViewController.m

supportedInterfaceOrientations

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

- (NSUInteger)supportedInterfaceOrientations

Return Value

<#return value description#>

Declared In

LoginViewController.m

textFieldShouldReturn:

Standard iOS delegate for Text Field keyboard handling

- (BOOL)textFieldShouldReturn:(UITextField *)textField

Parameters

textField

The Text Field

Return Value

Return True

Declared In

LoginViewController.m

viewDidLoad

Load and initialize the Controller for the Log In View

- (void)viewDidLoad

Declared In

LoginViewController.m

viewWillAppear:

Standard iOS delegate when return from navigation

- (void)viewWillAppear:(BOOL)animated

Parameters

animated

<#animated description#>

Declared In

LoginViewController.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

LoginViewController.m