Converting Java code block to Objective-C
- by user1123688
I am trying to convert my Android app to iOS. This will be my first iOS app. I can't seem to translate this code properly. If someone wouldn't mind showing me how its done, that would be greatly appreciated.
//scrambBase20 is a Byte array
String descramble(String input){
char[] ret;
ret = input.toCharArray();
int offset =…