Doug Null
Doug Null

Reputation: 8327

Does building a Windows Visual Studio Xamarin.IOS class library create an Xcode project on the paired MacBook?

I need to interface a Swift (or Objective-C) user interface Xcode project on the MacBook that calls the Xamarin.IOS class library.

Upvotes: 0

Views: 52

Answers (1)

Saamer
Saamer

Reputation: 5099

No it does not create an XCode project on the Macbook that you can edit in Swift. It only uses the Mac to compile the code. You have to

  • Install Visual Studio for Mac on the Mac computer
  • Transfer your directory to the mac and Open the same SLN file in Visual Studio for Mac

Most Xamarin developers actually just use Mac computers for development purposes.

Upvotes: 1

Related Questions