uns.11
uns.11

Reputation: 11

Is Xcode available for Windows 10?

I was going to start learning the Swift programming language, and for that, I was going to install Xcode. But I found out that Xcode is only available for macOS, and I have a computer that uses Windows. Is there any way to get Xcode or any software on which I can code in Swift language? Is there any other IDE for Swift other than Xcode?

Upvotes: 1

Views: 862

Answers (2)

Lex Li
Lex Li

Reputation: 63264

Apple does not support Swift on Windows, but if you consider third party products, then RemObjects has Silver free of charge,

https://www.remobjects.com/elements/silver/

You can install it and write Swift projects in Visual Studio or its own Water IDE.

enter image description here

Silver enables you to write Swift programs that connect to other programming frameworks (for example, Windows and Android), so you will find it an interesting approach to go.

Upvotes: 0

Titouan
Titouan

Reputation: 581

The xcode swoftware is only available on MacOS. There is a lot of online IDE where you can code in swift like this one. But with this kind of tool you wont be able to create a user interface. It is not possible to create a user interface on any other operating system than MacOS. If you really want to create an application with a user interface then you can always setup a virtual machine with MacOS running on it, install Xcode and start coding ;)

Upvotes: 2

Related Questions