Paresh Thakor
Paresh Thakor

Reputation: 1835

USB Programming with Objective-C

Can anyone tell me how to program USB devices with Objective-C as an iPhone application?

I want to access USB device contents through iPhone

Upvotes: 7

Views: 8920

Answers (1)

Louis Gerbarg
Louis Gerbarg

Reputation: 43462

You can't. While it is possible to build USB based accessories for iPhone if you join the Made for iPhone program using the ExternalAccessory framework, you cannot access arbitrary USB devices. The SDK gives you access to devices that use a custom interface on top of USB, the exact details of which you get after signing up for the program and singing some more NDAs.

Upvotes: 15

Related Questions