我正在集成我的应用程序支持阿拉伯字符。
如何在阿拉伯语字符串中获取相反的顺序?
使用以下代码。
所有 NSStrings 都是相同的过程来反转字符串
NSString *reverse=@"الكتب";
NSMutableString *reversedString = [NSMutableString string];
NSInteger charIndex = [reverse length];
while (charIndex > 0) {
charIndex--;
NSRange subStrRange = NSMakeRange(charIndex, 1);
[reversedString appendString:[reverse substringWithRange:subStrRange]];
}
NSLog(@"%@", reversedString);