My Error message:
Request for member “nameField” in something not a struct or union
My Error code:
NSString *msg = nil;
if (nameField.text.length > 0)
msg = [[NSString alloc] initWithFormat:@"Relax, %@, all is good".nameField.text];
else
msg = @"Relax, all is good";
your code line
try this
change in the line is you have used. instead of comma here -> :@”…”,
check if this helps