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

Fixed issues with storyboard with xamarin studio

This commit is contained in:
kspearrin
2016-06-03 17:54:49 -04:00
parent 186bbddff6
commit f7ac5e08f2
3 changed files with 33 additions and 34 deletions

View File

@@ -11,17 +11,22 @@ using UIKit;
namespace Bit.iOS.Extension
{
[Register("ActionViewController")]
partial class ActionViewController
{
[Outlet]
UIImageView imageView { get; set; }
[Register ("ActionViewController")]
partial class ActionViewController
{
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
UIImageView logo { get; set; }
[Action("DoneClicked:")]
partial void DoneClicked(NSObject sender);
[Action ("DoneClicked:")]
partial void DoneClicked (Foundation.NSObject sender);
void ReleaseDesignerOutlets()
{
}
}
void ReleaseDesignerOutlets ()
{
if (logo != null) {
logo.Dispose ();
logo = null;
}
}
}
}