「FriJul0917:57:44 +0000 2010」という形式の文字列があり、NSDateに変換する必要があります。
私はこの日付を変換するためにいくつかの失敗した操作を試みました、そして誰かが私がこれを達成することができる方法を教えてくれるかどうか疑問に思いました。
よろしく
「FriJul0917:57:44 +0000 2010」という形式の文字列があり、NSDateに変換する必要があります。
私はこの日付を変換するためにいくつかの失敗した操作を試みました、そして誰かが私がこれを達成することができる方法を教えてくれるかどうか疑問に思いました。
よろしく
強引な方法を試しましたか:
これはテストされていませんが、何をすべきかについてのアイデアが得られるはずです。
// Set up some helper information
NSArray *monthArray = [NSArray arrayWithObjects:@"Jan", @"Feb", @"Mar",
@"Apr", @"May", @"Jun",
@"Jul", @"Aug", @"Sep",
@"Oct", @"Nov", @"Dec", nil];
NSArray *ordinalArray = [NSArray arrayWithObjects:@"01", @"02", @"03",
@"04", @"05", @"06",
@"07", @"08", @"09",
@"10", @"11", @"12", nil];
NSDictionary *monthOrdinalDictionary = [NSDictionary dictionaryWithObjects:ordinalArray
forKeys:monthArray];
// This is the date string to convert.
dateString = @"Fri Jul 09 17:57:44 +0000 2010";
// Split it into it's components
NSArray *dateComponentArray = [dateString componentsSeparatedByString:@" "];
// Create a new date string from the components in a format that NSDate understands
newDateString = [NSString stringWithFormat:@"%@-%@-%@ %@ %@", [dateComponentArray objectAtIndex:6],
[monthOrdinalDictionary objectForKey:[dateComponentArray objectAtIndex:2]],
[dateComponentArray objectAtIndex:3],
[dateComponentArray objectAtIndex:4],
[dateComponentArray objectAtIndex:5]];
// Create the date from this string
NSDate *dateTime = [NSDate dateWithString:newDateString];
はい、それは醜いですが、これのほとんどをヘルパー関数にリファクタリングすることができます。私はそれをテストしていませんが、あなたは何をすべきかについての考えを持っているはずです:日付文字列を取り、NSDateが日付を作成するために使用できる文字列に変換し、この文字列を使用してNSDateを作成します。
少なくとも、作業するコードがあり、パフォーマンスのボトルネックである場合は、戻って変更することができます。