Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Since OpenGL doesn't have any function like GLLoadObjFile('myModel.obj');, What's the best tutorial to load a 3d model file like .obj in a iOS app?

I've tried the wavefront loader but it doesn't seem to be working.

share|improve this question

3 Answers

up vote 1 down vote accepted

https://github.com/jlamarche/iOS-OpenGLES-Stuff/tree/master/Wavefront%20OBJ%20Loader

It's loader seems pretty decent, supporting even materials from blender, though it uses OpenGL ES 1, the loader classes should work perfectly in ES 2

share|improve this answer
It didn't seem to work when I tried it. However I will say that I don't know much about OpenGL ES 1 or 2. So, do you know of a tutorial or documentation for this Xcodeproj? – ManOx Jul 16 '12 at 4:10
Wait, if you don't know much about OpenGL ES 1/2, then what are you doing with the obj file? – TheAmateurProgrammer Jul 16 '12 at 4:12
Long story short, I would like to display a .obj file I have created via Blender inside a UIView (if that's even possible). – ManOx Jul 16 '12 at 4:22
Don't think that's possible. Did a quick google search, and everything points towards using OpenGL ES. You'll have to learn a bit of OpenGL, unfortunately. – TheAmateurProgrammer Jul 16 '12 at 4:27
Yeah... That's what I figured. Maybe I'll just get someone who's proficient in Open GL. THanks! – ManOx Jul 16 '12 at 19:18

I have used a library called Ninevegl. It is pretty good and supports file formats like .obj and .dae. It is very easy to use and they have nicely explained documentation. Here is the link.

http://nineveh.gl/downloads/

share|improve this answer

I built a Perl/Xcode project for loading .obj and .mtl files into OpenGL ES 2.0 on iOS, available here. It's called mtl2opengl and you can see comments/results from other S.O. users in these similar questions:

  1. opengles display human face in iphone
  2. ios : Displaying a simple 3D model with GLEssentials sample code
  3. How to convert Blender blend (or obj) file to Qualcom Vuforia .h file
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.