我正在尝试(但失败)使用Apportable中的NSString.drawAtPoint
显示Unicode字符。
尝试显示类似 @"TEST 😄太"
的内容将显示 T
. 其他单词可能只显示拉丁字符,而不显示外来的 Unicode。
关于如何在 Apporable 中使其正常工作的任何想法?
试试这个:
[NSString stringWithUTF8String:"TEST 😄太"];
至于我,我将项目中的所有字符串从这种NSString *str = @"Strings"
转换为这种NSString *str = [NSString stringWithUTF8String:"Strings"];
。它在iOS和Apportable版本的项目中都可以正常工作。无需像那样制作#ifdef ANDROID ...
块 如何在 Apportable UIKit 中启用本地化支持?