をスクランブルしてからスクランブルを解除する手っ取り早い汚い方法はありNSString
ますか?
// i.e.
NSString *helloWorld = @"Hello World!";
[helloWorld scrambled]; //helloWorld now = @"W olell!odh"
[helloWorld unscramble]; //helloWorld now = @"Hello World!"
Base64 暗号化を使用してこれと同様のことを既に達成しましたが、文字列が大幅に肥大化します。スクランブリングのセキュリティ レベルは少しでも気にしません。人間が判読できないように並べ替える必要があるだけです。