ViewController.cs 606 B

12345678910111213141516171819202122232425
  1. using Foundation;
  2. using System;
  3. using UIKit;
  4. namespace personalbooks
  5. {
  6. public partial class ViewController : UIViewController
  7. {
  8. public ViewController(IntPtr handle) : base(handle)
  9. {
  10. }
  11. public override void ViewDidLoad()
  12. {
  13. base.ViewDidLoad();
  14. // Perform any additional setup after loading the view, typically from a nib.
  15. }
  16. public override void DidReceiveMemoryWarning()
  17. {
  18. base.DidReceiveMemoryWarning();
  19. // Release any cached data, images, etc that aren't in use.
  20. }
  21. }
  22. }