我的代碼很好,直到知道爲止,如果我將一個雙位數字放入文本字段(如12),nslog返回2個單位數字(如1和2)。現在我需要把這兩個單個數字的數字放到2個字符串中。有人可以幫助我嗎?提前致謝。將char轉換爲字符串
NSString *depositOverTotalRwy = [NSString stringWithFormat:@"%@", [deposit text]];
NSArray *components = [depositOverTotalRwy
componentsSeparatedByString:@"/"];
NSString *firstThird = [components objectAtIndex:0];
for(int i = 0; i < [firstThird length]; i++)
{
char extractedChar = [firstThird characterAtIndex:i];
NSLog(@"%c", extractedChar);
}
是的它的工作原理,但這樣做我得到兩個數字在同一個字符串。如果我想把它分成兩個字符串呢?謝謝 – mat 2011-05-14 06:03:20
我編輯了我的答案來處理你的情況。 – 2011-05-14 06:17:04
+1,不錯的答案.. – 2014-02-03 12:59:31