I'd like to have a 3d object inside an iPhone UIView that can be rotated by using the touching events (swipe with a finger maybe). Where shall I start looking at? I guess OpenGL ES might be useful to do this, but I know nothing about it and I do not wanat to go deep inside OpenGL Programming ( studiying physics, rotations, quaternions etc) so maybe that is not what I need. I can create very basic 3d models in Blender so I'd like to use those in the app (I saw there are scripts that can parse and convert obj files in arrays of vertexes etc) Shall I rely upon a graphic engine like Irrlicht? Any suggestion is welcomed
That is something I've done a few months ago. A friend that is a proper Objective-C developer said I should try the SIO2 engine.
Tutorial2 covers exactly what you are after.
(source: sio2interactive.com)
Basically you build your scene in Blender and there is an exporter to get that in the SIO2 Game Engine on the IPhone, how awesome is that ? :)
To break it down:
e.g. change
SIO2object *_SIO2object = ( SIO2object * )sio2ResourceGetObject( sio2->_SIO2resource,
"object/Suzanne" );
to
SIO2object *_SIO2object = ( SIO2object * )sio2ResourceGetObject( sio2->_SIO2resource,
"object/YourMeshName" );
It's all explained in the video tutorial as well.
Good luck!