SecondViewController.cs 609 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using UIKit;
  3. using Urho;
  4. using Urho.iOS;
  5. namespace Playgrounds.iOS
  6. {
  7. public partial class SecondViewController : UIViewController
  8. {
  9. protected SecondViewController(IntPtr handle) : base(handle)
  10. {
  11. // Note: this .ctor should not contain any initialization logic.
  12. }
  13. public override async void ViewDidLoad()
  14. {
  15. base.ViewDidLoad();
  16. // Perform any additional setup after loading the view, typically from a nib.
  17. }
  18. public override void DidReceiveMemoryWarning()
  19. {
  20. base.DidReceiveMemoryWarning();
  21. // Release any cached data, images, etc that aren't in use.
  22. }
  23. }
  24. }