Hello!
I'm having problems with a program I'm trying to make in Objective-C.
I have a method that I'm trying in my MainViewController.m that is as follows.
- (void)updateLabels:(NSString *)text :(BOOL)isOn;
{
[self setNameLabel:(text *);
if (isOn)
[self setOnLabel:(ON *);
else
[self setOnLabel:(OFF *);
}
My goal should be obvious from this code. I'm problably doing something terribly wrong to get the error message Expected expression before ')' token
.
I'd appreciate any help!