I can't seem to download the iPhone game template. The computer keeps saying that it can't find the URL
Yeah, some of the links are dead but hey:
I still got the ultimate iPhone OpenGL game template!a lot of the cases (at least that's what I think they are) start with NS or CG what do they stand for
NS stands for NextStep. It's just what the API was built from.
CG stands for CoreGraphics. It's a powerful framework for drawing.
And what is the importance of the semi-colon.
Semi-colons separate commands.
int x = 1; int y = 1;
Meaning you can put multiple things on the same line if you wanted. You
must have a semi-colon after every command or you will get an error.
And what does the star (*) actually do.
The star means that variable is a pointer to a piece of memory. You use it on objects.
NSString* myString = @"This is a string";
You don't need to use it on:
int test = 5;
Pointers(*) come in handy when you want to pass objects through functions and use them elsewhere.
This is really hard to understand until you actually use it.
And what is the difference between strong typing, and weak typing?
This article can explain better than I can:
http://en.wikipedia.org/wiki/Strong_typingIt appears that a few of the iPhone tutorial links still work.