1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-17 08:43:21 +00:00

Table source and row selection.

This commit is contained in:
Kyle Spearrin
2016-06-04 18:27:34 -04:00
parent 9755d4c79b
commit 1c4de107b9
3 changed files with 112 additions and 52 deletions

View File

@@ -14,6 +14,14 @@ namespace Bit.iOS.Extension
[Register ("ActionViewController")]
partial class ActionViewController
{
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
UINavigationItem NavItem { get; set; }
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
UITableView tableView { get; set; }
[Action ("DoneClicked:")]
partial void DoneClicked (Foundation.NSObject sender);
@@ -23,6 +31,14 @@ namespace Bit.iOS.Extension
void ReleaseDesignerOutlets ()
{
if (NavItem != null) {
NavItem.Dispose ();
NavItem = null;
}
if (tableView != null) {
tableView.Dispose ();
tableView = null;
}
}
}
}