This commit is contained in:
Marcelo Perretta 2017-04-11 20:10:38 -03:00
Родитель 928e16da44
Коммит ca76ff0d00
3 изменённых файлов: 51 добавлений и 57 удалений

Просмотреть файл

@ -1,22 +1,23 @@
// WARNING
//
// This file has been generated automatically by Xamarin Studio to store outlets and
// actions made in the UI designer. If it is removed, they will be lost.
// Manual changes to this file may not be handled correctly.
//
using Foundation;
using System.CodeDom.Compiler;
namespace CustomTransitions
{
[Register ("CDSecondViewController")]
partial class CDSecondViewController
{
[Action ("DismissAction:")]
partial void DismissAction (UIKit.UIButton sender);
void ReleaseDesignerOutlets ()
{
}
}
}
// WARNING
//
// This file has been generated automatically by Xamarin Studio from the outlets and
// actions declared in your storyboard file.
// Manual changes to this file will not be maintained.
//
using Foundation;
using System;
using System.CodeDom.Compiler;
namespace CustomTransitions
{
[Register ("CDSecondViewController")]
partial class CDSecondViewController
{
[Action ("DismissAction:")]
partial void DismissAction (UIKit.UIButton sender);
void ReleaseDesignerOutlets ()
{
}
}
}

Просмотреть файл

@ -20,8 +20,6 @@
<CodesignKey>iPhone Developer</CodesignKey>
<MtouchDebug>true</MtouchDebug>
<MtouchFastDev>true</MtouchFastDev>
<MtouchUseSGen>true</MtouchUseSGen>
<MtouchUseRefCounting>true</MtouchUseRefCounting>
<MtouchLink>None</MtouchLink>
<MtouchArch>i386</MtouchArch>
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
@ -35,8 +33,6 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodesignKey>iPhone Developer</CodesignKey>
<MtouchUseSGen>true</MtouchUseSGen>
<MtouchUseRefCounting>true</MtouchUseRefCounting>
<MtouchFloat32>true</MtouchFloat32>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchLink>SdkOnly</MtouchLink>
@ -52,8 +48,6 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodesignKey>iPhone Developer</CodesignKey>
<MtouchUseSGen>true</MtouchUseSGen>
<MtouchUseRefCounting>true</MtouchUseRefCounting>
<MtouchLink>None</MtouchLink>
<MtouchArch>i386</MtouchArch>
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
@ -72,8 +66,6 @@
<DeviceSpecificBuild>true</DeviceSpecificBuild>
<MtouchDebug>true</MtouchDebug>
<MtouchFastDev>true</MtouchFastDev>
<MtouchUseSGen>true</MtouchUseSGen>
<MtouchUseRefCounting>true</MtouchUseRefCounting>
<MtouchFloat32>true</MtouchFloat32>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchLink>SdkOnly</MtouchLink>
@ -127,7 +119,6 @@
<InterfaceDefinition Include="CrossDissolve\CrossDissolve.storyboard" />
<InterfaceDefinition Include="MainMenu\Main.storyboard" />
<InterfaceDefinition Include="Slide\Slide.storyboard" />
<InterfaceDefinition Include="Resources\LaunchScreen.storyboard" />
<InterfaceDefinition Include="LaunchScreen.storyboard" />
</ItemGroup>
<ItemGroup>

Просмотреть файл

@ -1,26 +1,28 @@
// WARNING
//
// This file has been generated automatically by Xamarin Studio to store outlets and
// actions made in the UI designer. If it is removed, they will be lost.
// Manual changes to this file may not be handled correctly.
//
using Foundation;
using System.CodeDom.Compiler;
namespace CustomTransitions
{
[Register ("SlideTransitionDelegate")]
partial class SlideTransitionDelegate
{
[Outlet]
UIKit.UITabBarController TabBarController { get; set; }
void ReleaseDesignerOutlets ()
{
if (TabBarController != null) {
TabBarController.Dispose ();
TabBarController = null;
}
}
}
}
// WARNING
//
// This file has been generated automatically by Xamarin Studio from the outlets and
// actions declared in your storyboard file.
// Manual changes to this file will not be maintained.
//
using Foundation;
using System;
using System.CodeDom.Compiler;
namespace CustomTransitions
{
[Register ("SlideTransitionDelegate")]
partial class SlideTransitionDelegate
{
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
UIKit.UITabBarController tabBarController { get; set; }
void ReleaseDesignerOutlets ()
{
if (tabBarController != null) {
tabBarController.Dispose ();
tabBarController = null;
}
}
}
}