Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的问题,我正在尝试显示来自 URL 的图像UIImageView。当 URL 上的图像标题为阿拉伯语时,如果该图像是英文图像,则图像不会显示在UIImageView. 那么如何转换阿拉伯语。
UIImageView
谢谢
如果理解正确,您的 URL 中包含阿拉伯字符。您需要对这些字符进行百分比转义才能使其正常工作。
用这个,
NSURL *percentEscapedURL = [NSURL URLWithString:[unescapedString stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding]];
希望有帮助!
使用编码为 NSUTF8StringEncoding,对路径进行编码