I'm using GLTapLabel for a project and almost everything is working fine.
When I try to show a text starting with a +
or any other special characters, the whole thing looks like this: Screenshot 1 (left: the output in the simulator, right: the text in the interface builder).
Normally it works like a charm as seen in ScreenShot 2.
I think it has something to do with this line from GLTapLabel.m
(in the drawTextInRect
function):
while ([s scanCharactersFromSet:[NSCharacterSet symbolCharacterSet] intoString:&read])
Is there any solution? Am I just missing something? I've never done something before with NSScanner
.