| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using System;
- using System.Drawing;
- using Foundation;
- using UIKit;
- namespace TwitterSearch.iOS
- {
- public partial class SplashScreen : UIViewController
- {
- static bool UserInterfaceIdiomIsPhone
- {
- get { return UIDevice.CurrentDevice.UserInterfaceIdiom == UIUserInterfaceIdiom.Phone; }
- }
- public SplashScreen(IntPtr handle)
- : base(handle)
- {
- }
- public override void DidReceiveMemoryWarning()
- {
- // Releases the view if it doesn't have a superview.
- base.DidReceiveMemoryWarning();
- // Release any cached data, images, etc that aren't in use.
- }
- #region View lifecycle
- public override void ViewDidLoad()
- {
- base.ViewDidLoad();
- // Perform any additional setup after loading the view, typically from a nib.
- }
- public override void ViewWillAppear(bool animated)
- {
- base.ViewWillAppear(animated);
- }
- public override void ViewDidAppear(bool animated)
- {
- base.ViewDidAppear(animated);
- }
- public override void ViewWillDisappear(bool animated)
- {
- base.ViewWillDisappear(animated);
- }
- public override void ViewDidDisappear(bool animated)
- {
- base.ViewDidDisappear(animated);
- }
- #endregion
- }
- }
|