Teask Nick
Teask Nick

Reputation: 69

How I open a UIViewController from iOS and Android on forms

Click on a button on forms view and:

if iOS

open a UIViewController from iOS storyboard

if Droid

The same for android.

Actually, I need just for iOS...

Upvotes: 0

Views: 745

Answers (1)

Art
Art

Reputation: 3167

Usually you just define some interface in your PCL project, and implement it in platform-specific projects linking them using DependencyService. http://developer.xamarin.com/guides/cross-platform/xamarin-forms/dependency-service/

Upvotes: 1

Related Questions