So I'm trying to make the horrible leap from VB.NET to objective-C.
My only curly-brace experience is a little ActionScript 3... I'm having a hard time grasping the use of the * character.
Question 1:
The tutorial I'm using has these two lines next to each other..
IBOutlet UIPickerView *pickerView;
NSArray* myArray;
It's my understanding that the * denotes essentially a reference type. Why does it precede the variable name on the first line, but the class name on the second?
Question two, about class declarations:
@implementation {
Why is some code here
}
and other code here?
@end