C# Class TaskyA11y.RootViewController

Inheritance: UITableViewController
Mostrar archivo Open project: conceptdev/xamarin-samples Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
CreateTask ( ) : void
DeleteTask ( TodoItem task ) : void
DidReceiveMemoryWarning ( ) : void
PrepareForSegue ( UIStoryboardSegue segue, NSObject sender ) : void

Prepares for segue.

The prepareForSegue method is invoked whenever a segue is about to take place. The new view controller has been loaded from the storyboard at this point but it’s not visible yet, and we can use this opportunity to send data to it.

RootViewController ( IntPtr handle ) : System
SaveTask ( TodoItem task ) : void
ShouldAutorotateToInterfaceOrientation ( UIInterfaceOrientation toInterfaceOrientation ) : bool
ViewDidAppear ( bool animated ) : void
ViewDidDisappear ( bool animated ) : void
ViewDidLoad ( ) : void
ViewDidUnload ( ) : void
ViewWillAppear ( bool animated ) : void
ViewWillDisappear ( bool animated ) : void

Method Details

CreateTask() public method

public CreateTask ( ) : void
return void

DeleteTask() public method

public DeleteTask ( TodoItem task ) : void
task TodoItem
return void

DidReceiveMemoryWarning() public method

public DidReceiveMemoryWarning ( ) : void
return void

PrepareForSegue() public method

Prepares for segue.
The prepareForSegue method is invoked whenever a segue is about to take place. The new view controller has been loaded from the storyboard at this point but it’s not visible yet, and we can use this opportunity to send data to it.
public PrepareForSegue ( UIStoryboardSegue segue, NSObject sender ) : void
segue UIStoryboardSegue
sender NSObject
return void

RootViewController() public method

public RootViewController ( IntPtr handle ) : System
handle System.IntPtr
return System

SaveTask() public method

public SaveTask ( TodoItem task ) : void
task TodoItem
return void

ShouldAutorotateToInterfaceOrientation() public method

public ShouldAutorotateToInterfaceOrientation ( UIInterfaceOrientation toInterfaceOrientation ) : bool
toInterfaceOrientation UIInterfaceOrientation
return bool

ViewDidAppear() public method

public ViewDidAppear ( bool animated ) : void
animated bool
return void

ViewDidDisappear() public method

public ViewDidDisappear ( bool animated ) : void
animated bool
return void

ViewDidLoad() public method

public ViewDidLoad ( ) : void
return void

ViewDidUnload() public method

public ViewDidUnload ( ) : void
return void

ViewWillAppear() public method

public ViewWillAppear ( bool animated ) : void
animated bool
return void

ViewWillDisappear() public method

public ViewWillDisappear ( bool animated ) : void
animated bool
return void