Book Image

Learning Xamarin studio

By : William Smith
Book Image

Learning Xamarin studio

By: William Smith

Overview of this book

Table of Contents (16 chapters)
Learning Xamarin Studio
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Creating your first iOS application


Creating your first iOS application with Xamarin Studio is remarkably easy. For now, let's just build a simple project as a point of reference, as shown in the following steps. We'll dig into the details later.

  1. Within Xamarin Studio, navigate to File | New | Solution….

  2. Choose the C# | iOS | iPhone group.

  3. Choose the Single View Application project type.

  4. Name your project HelloiPhone and click OK.

  5. Open the HelloiPhoneViewController.cs file.

  6. We'll explore some code examples in detail later, but for now just replace the ViewDidLoad() method with the following block of code:

    UILabellabelHello;
    public override void ViewDidLoad ()
            {
    base.ViewDidLoad ();
    var frame = new RectangleF(10, 10, 300, 30);
    labelHello = new UILabel(frame);
    labelHello.Text = "Hello, iPhone!";
    View.Add (labelHello);
            }
  7. In the target dropdown, select iPhone Retina (4-inch) -> iOS 7.1.

  8. Click the Build and Run button.

That's it! You've created your first iOS application using Xamarin...