I am learning XCode and iOS for the first time. When creating an outlet with the mouse and Ctrl key, what happens to the @synthesize? In the tutorial I'm watching, it gets autocreated, but I don't see it in my Xcode. I am running the lastest OS X and latest Xcode.
If it's not autocreated, can we still overwrite the getter and setter?
Say something like this:
@synthesize topSpeed = _topSpeed;
(void)setTopSpeed:(double)speed
{
if((speed < 1) && (speed > 0) _topSpeed = speed;
}