我還沒有弄清楚如何將NSString轉換爲int。我試圖將ASCII轉換爲文本,但要做到這一點,我需要將一個字符串轉換爲一個int。將字符串轉換爲int-objective c
我覺得很奇怪,這不是在線或堆棧溢出。我確定我不是那個需要這個的在線人。
在此先感謝您的幫助。
P.S.如果這能幫助這裏是我使用轉換爲ASCII代碼:
+ (NSString *) decodeText:(NSString *)text {
NSArray * asciiCode = [text componentsSeparatedByString:@"|"];
int i = 0;
NSMutableString *decoded;
while (i < ([asciiCode count]-1)) {
NSString *toCode = [asciiCode objectAtIndex:i];
int codeInt = toCode;
NSString *decode = [NSString stringWithFormat:@"%c", codeInt];
[decoded appendString:decode];
}
return decoded;
}
我看了很多問題,但找不到答案。這就是我問的原因。 – DonyorM