Yearly Archives: 2015

img_xamarin

Hello World, How it works?

- - 0 Comments

In the last tutorial we see how to create a basic hello World app, now in this we are going to see what we did there and try to understand how all this works for batter understanding. What we are going to cover in this tutorial: Introduction to Xamarin Studio –...

img_xamarin

Hello World! Build your first Xamarin iOS App

- - 0 Comments

Take a Look at Your First App Before we go into the coding part, let’s first take a look at our version of the “Hello World” app. The final deliverable will look like this Start Coding! First, launch Xamarin. Once launched, Xamarin displays a welcome dialog. From here, choose “New...

img_xamarin

How to create Action sheets using Xamarin iOS.

- - 0 Comments

In this tutorial we are going to see some basic controls that are needed to develop a regular application like: ActionSheet Buttons Label ImageView ActionSheet: Action sheets consist of a really convenient and fast way to display a bunch of options that the user should select from, and it is...

img_xamarin

How to use Buttons in Xamarin iOS.

- - 0 Comments

Buttons are the basic controls that are needed in every basic app in every platform. In Xamarin iOS we have six different types of buttons. System DetailDisclosure InfoDark InfoLight ContactAdd Custom Adding buttons in our view is very simple just drag and drop button control from toolbox. To change type...

img_xamarin

How to use ImageView and Labels in Xamarin iOS.

- - 0 Comments

It’s very easy to user ImageView and Label directly with storyboard at design time, but how to use this controls at runtime or change its property through coding. In this tutorial we are going to see how to use this controls at coding side. After completion of this demo it’ll...

img_xamarin

How to set Application icons and launch images in Xamarin iOS.

- - 0 Comments

In iOS Application Icons and Launch Images to support Applications. This Application Icons are show in Home Screen, in Spotlight and Setting screen. There are strict instructions about setting icons and images in iPhones and iPads. Applications that targets iOS 7 and early require following icons: With Application icons there...

img_xamarin

How Navigation with Segue works in Xamarin iOS.

- - 0 Comments

Storyboard provides facility of transferring from 1 view to another without anytime of code. This is done by Segue. A Segue, or Segue Object, is used in iOS development to represent a transition between scenes. To create a segue, hold down the Ctrl key and click-drag from one scene to another. As we drag...

img_xamarin

How to Transfer Data between views in Xamarin iOS.

- - 0 Comments

We have create a tutorial about how to go to one view to another but what about passing data between this views. In this tutorial we are going to extend our last tutorial , so if you didn’t look at it please refer it. We just pass segue push to...

img_xamarin

How to implement Tab bar controller in Xamarin iOS.

- - 0 Comments

Tabbed applications are used in iOS to support user interfaces where multiple screens can be accessed in no particular order. Through the UITabBarController class, applications can easily include support for such multi-screen scenarios. UITabBarController takes care of the multi-screen management, allowing the application developer to focus on the details of each screen. The UITabBarController supports tabbed...