64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
25 lines
573 B
C#
25 lines
573 B
C#
using System;
|
|
|
|
using UIKit;
|
|
|
|
namespace Newtonsoft.Json.Test {
|
|
public partial class ViewController : UIViewController {
|
|
protected ViewController (IntPtr handle) : base (handle)
|
|
{
|
|
// Note: this .ctor should not contain any initialization logic.
|
|
}
|
|
|
|
public override void ViewDidLoad ()
|
|
{
|
|
base.ViewDidLoad ();
|
|
// Perform any additional setup after loading the view, typically from a nib.
|
|
}
|
|
|
|
public override void DidReceiveMemoryWarning ()
|
|
{
|
|
base.DidReceiveMemoryWarning ();
|
|
// Release any cached data, images, etc that aren't in use.
|
|
}
|
|
}
|
|
}
|