Inherits from UIViewController
Conforms to ADBannerViewDelegate
UITableViewDataSource
Declared in LoginPickGroupViewController.h
LoginPickGroupViewController.m

Properties

tableView

@property (weak, nonatomic) IBOutlet UITableView *tableView

textLabel

@property (weak, nonatomic) IBOutlet UILabel *textLabel

Instance Methods

bannerView:didFailToReceiveAdWithError:

Standard iOS delegate to handle iAD display error

- (void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error

Parameters

banner

The Banner

error

The Error

Declared In

LoginPickGroupViewController.m

didReceiveMemoryWarning

Standard iOS delegate for handling memory warnings

- (void)didReceiveMemoryWarning

Declared In

LoginPickGroupViewController.m

supportedInterfaceOrientations

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

- (NSUInteger)supportedInterfaceOrientations

Return Value

<#return value description#>

Declared In

LoginPickGroupViewController.m

tableView:cellForRowAtIndexPath:

Initialize a Cell in the Table View

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

Parameters

tableView

The Table View

indexPath

Index to the Cell in the Table View

Return Value

Return the Cell

Declared In

LoginPickGroupViewController.m

tableView:didSelectRowAtIndexPath:

When a Cell in the Table View is selected

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

Parameters

tableView

The Table View

indexPath

Index to the Cell in the Table View

Return Value

Return the Cell

Declared In

LoginPickGroupViewController.m

tableView:heightForRowAtIndexPath:

Return height of the rows

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

Parameters

tableView

The Table View

indexPath

The index of the Row

Return Value

Return row height

Declared In

LoginPickGroupViewController.m

tableView:numberOfRowsInSection:

Return number of rows in the Table View

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

Parameters

tableView

The Table View

section

The Section

Return Value

Return the number of rows in the Table

Declared In

LoginPickGroupViewController.m

viewDidLoad

Load and initialize the Controller for the Display Login Pick Group View

- (void)viewDidLoad

Declared In

LoginPickGroupViewController.m