Can anyone help me understand the difference between the following please. As you can probably tell I'm new to Objective-C but as with many languages, explanations about simplistic things like the below are often hard to find.
Basically I just want to know the difference between the following:
NSString* myString;
NSString *myString;
Also the difference between the following (if both are valid??):
Code:
- (void)doSomething:(UILabel *)label {
}
AND
- (void)doSomething:(UILabel)label {
}
Thanks in advance
Chris