user2912376
user2912376

Reputation: 13

Connect IOS device to Xcode

This could be a noob question, but as a new ios "developer" I want to know how to connect my ios device to xcode?

I Need to find out how my new app looks on a device, and if it works!

Do I need to register my device on the apple dev programm? Or I could connect any device?

Sorry if this is a answered question here.

Upvotes: 0

Views: 2967

Answers (2)

Git.Coach
Git.Coach

Reputation: 3092

To connect an iDevice you have to be enrolled in Apple's Developer Program. You can then register your iDevice on the dev. portal and will be able to connect it via the Xcode Organizer to your IDE.

You can then select this device on the top left side of your Xcode project to run your build on this device.

Upvotes: 0

Nikos M.
Nikos M.

Reputation: 13783

You need to register the device to apple developer portal (you must be a registered, paid developer to test on a real device). And after that connect the device, open xcode organizer and set the device as developer device (so you can see logs while running your app on it). More info can be found here:

https://developer.apple.com/library/ios/documentation/IDEs/Conceptual/AppDistributionGuide/TestingYouriOSApp/TestingYouriOSApp.html

Upvotes: 2

Related Questions