hi plz tell me what to do in this type of error???
i have:
NSString *a = @" b ="1.0" "
hi plz tell me what to do in this type of error???
i have:
NSString *a = @" b ="1.0" "
You need to escape " within " - SO it should be:
NSString *a = @" b =\"1.0\" ";