Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

AppDelegate.cs 565 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  1. #region Generated Code
  2. namespace WorkingWithWebview.iOS
  3. {
  4. using Foundation;
  5. using UIKit;
  6. [Register("AppDelegate")]
  7. public partial class AppDelegate :
  8. global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate // superclass new in 1.3
  9. {
  10. public override bool FinishedLaunching(UIApplication app, NSDictionary options)
  11. {
  12. global::Xamarin.Forms.Forms.Init();
  13. this.LoadApplication(new App()); // method is new in 1.3
  14. return base.FinishedLaunching(app, options);
  15. }
  16. }
  17. }
  18. #endregion
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...