File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,10 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
64
64
65
65
// Update date format so that we can parse Twitter dates properly
66
66
// Wed Sep 29 15:31:08 +0000 2010
67
- [RKObjectMapping addDefaultDateFormatterForString: @" E MMM d HH:mm:ss Z y" inTimeZone: nil ];
67
+ NSDateFormatter *dateFormatter = [NSDateFormatter new ];
68
+ dateFormatter.dateFormat = @" E MMM d HH:mm:ss Z y" ;
69
+ dateFormatter.timeZone = [NSTimeZone timeZoneForSecondsFromGMT: 0 ];
70
+ [[RKValueTransformer defaultValueTransformer ] insertValueTransformer: dateFormatter atIndex: 0 ];
68
71
69
72
// Register our mappings with the provider using a response descriptor
70
73
RKResponseDescriptor *responseDescriptor = [RKResponseDescriptor responseDescriptorWithMapping: statusMapping
Original file line number Diff line number Diff line change @@ -65,7 +65,10 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
65
65
66
66
// Update date format so that we can parse Twitter dates properly
67
67
// Wed Sep 29 15:31:08 +0000 2010
68
- [RKObjectMapping addDefaultDateFormatterForString: @" E MMM d HH:mm:ss Z y" inTimeZone: nil ];
68
+ NSDateFormatter *dateFormatter = [NSDateFormatter new ];
69
+ dateFormatter.dateFormat = @" E MMM d HH:mm:ss Z y" ;
70
+ dateFormatter.timeZone = [NSTimeZone timeZoneForSecondsFromGMT: 0 ];
71
+ [[RKValueTransformer defaultValueTransformer ] insertValueTransformer: dateFormatter atIndex: 0 ];
69
72
70
73
// Register our mappings with the provider
71
74
RKResponseDescriptor *responseDescriptor = [RKResponseDescriptor responseDescriptorWithMapping: tweetMapping
You can’t perform that action at this time.
0 commit comments