这是我关于Stackoverflow的第一个问题,所以我希望我做得对。 我对iOS开发相对较新,并且在iOS 7上有文本渲染问题。从下面链接的屏幕截图中可以看出,某些引号无法正确呈现。
http://s8.postimg.org/qv3unsuf9/Bildschirmfoto_2014_02_27_um_10_15_10.png
此问题仅发生在iOS 7以及模拟器和硬件设备上。有什么想法吗?
更新:以下代码用于显示对话框:
NSString *title = @"\"Come\" \"to\" ...";
NSString *message = @"... \"the\" \"dark\" \"side\"";
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title message:message delegate:self cancelButtonTitle:@"Ja" otherButtonTitles:@"Nein", nil];