Just a quick novice question from Objective-C: what does the asterisk in parentheses mean in the following code example? Is this a pointer? Thanks in advance.
#import <Foundation/Foundation.h>
@interface Tire : NSObject
@end
@implementation Tire
- (NSString *) description
{
return (@"I am a tire.");
}
@end
source
share