Quick question, are these the same?
self.sliderLabel = nil;
AND
[self setSliderLabel: nil];
gary
Quick question, are these the same?
self.sliderLabel = nil;
AND
[self setSliderLabel: nil];
gary
They are exactly the same.
In fact, at compile time self.sliderLabel = nil;
becomes [self setSliderLabel: nil];
.