Separate names with a comma.
I'll make it even easier for people, heres the code to do it! UInt32 propertySize, audioIsAlreadyPlaying=0; propertySize = sizeof(UInt32);...
OpenGL lives in the discrete hardware level world. In order to draw anything curvy, you have to break it down into strait lines.
The bottom line is you cant make a game without doing at least a little coding. However there are free engines out there, such as 'oolong' and 'si02'.
Yes, Xcode comes with it's own profiling tools. If you have installed Xcode, search for "instruments". I think it's in the utilities folder....
Yes it can compile plain ".cpp" files. Or you want to mix C++ and Objective-C together, change the file type to ".mm".
You can get both work just as good, but be aware that all of the OS functions are in Objective-C, which gives you a little more work to get your...
I guess I'm one of the only people that uses only C++( apart from a few unavoidable objective-c functions to interface with the OS ). They will...
The iPhone/Touch uses Opengl ES 1.1.
http://twitter.com/bovinedragon
It sounds like you didn't get what some people said. Sketchup is a 3d modeler, not a game engine. What program you use to make your models has...
Just store the position of the sprite in a variable(eg float x,y;), and then every frame decide which button is being pressed(set up the...
Says it is not available in the US store :/
A cString is just a string that is held in a char* (aka a c-style string). It is a type, not a variable name. It says it is throwing the...
NSInvalidArgumentException Name of an exception that occurs when you pass an invalid argument to a method, such as a nil pointer where a non-nil...