24 lines
342 B
C#
24 lines
342 B
C#
![]() |
using Foundation;
|
|||
|
using UIKit;
|
|||
|
|
|||
|
namespace Facebook.YogaKit.iOS.Sample
|
|||
|
{
|
|||
|
[Register("AppDelegate")]
|
|||
|
public class AppDelegate : UIApplicationDelegate
|
|||
|
{
|
|||
|
public override UIWindow Window
|
|||
|
{
|
|||
|
get;
|
|||
|
set;
|
|||
|
}
|
|||
|
|
|||
|
public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
|
|||
|
{
|
|||
|
return true;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
|