アプリケーションのCSVファイルから読み取られたデータを整数に変換する必要がある場合があります。後でプロットする必要があります。現在のところ、データの保存時には認識されません。NSArrayコンポーネントを整数または10進数に変換する
int i=[[rows objectAtIndex:0] componentsSeparatedByString:@","];
これは実装されたコードです。
-(void)connection :(NSURLConnection *) connection didReceiveData:(NSData *)data{
[self serverConnect];
response = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
//NSLog(response);
NSString *stripped1 = [response stringByReplacingOccurrencesOfString:@"\r" withString:@""];
NSArray *rows = [stripped1 componentsSeparatedByString:@"\n"];
NSArray *components;
for (int i=0;i<[rows count]; i++) {
if(i == 0 || [[rows objectAtIndex:i] isEqualToString:@""]){
continue;
}
components = [[rows objectAtIndex:i] componentsSeparatedByString:@","];
NSLog(@"data1:%@ data2:%@ data3:%@", [components objectAtIndex:0] ,[components objectAtIndex:1],[components objectAtIndex:2]);
}
data1
、data2
とdata3
は、整数ことになっています。
ありがとうございます。