Search code examples
ioscocos3d

UIKit with 3D Viewer iOS


I would like to import a 3D model into an iOS application for a single UIViewController. The view will need to be rotated and zoomed. I am currently using storyboards and ARC. I've looked the available libraries, but there seems to be a lot of scattered documentation on doing it. Does anyone have suggestions?


Solution

  • Unfortunately, there is not an easy way to do this on iOS. Your best bet is likely to be looking into GLKit, but that still means either writing a lot of your own code to read and display the model, or finding third party code somewhere.

    On Mac OS X, there is Scene Kit, but I have heard no mention of it coming to iOS.