0
我想要一個字符串(@「12345」)和提取器每個單獨的字符並轉換爲它的十進制等效。將字符串轉換爲字符到整數
@ 「1」= 1 @ 「2」= 2 等
以下是我有這麼遠:
...
[self ArrayOrder:@"1234"];
...
-(void)ArrayOrder(Nsstring *)Directions
{
NSString *singleDirections = [[NSString alloc] init];
//Loop Starts Here
*singleDirection = [[Directions characterAtIndex:x] intValue];
//Loop ends here
}
我已經收到類型錯誤。