Skip to content

Commit 82f540f

Browse files
author
Blake Watters
committedOct 10, 2013
Fix deprecation warnings and use RKValueTransformer API's for configuring date parsing
1 parent f50552e commit 82f540f

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
 

‎Examples/RKTwitter/Classes/RKTwitterAppDelegate.m

+4-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
6464

6565
// Update date format so that we can parse Twitter dates properly
6666
// 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];
6871

6972
// Register our mappings with the provider using a response descriptor
7073
RKResponseDescriptor *responseDescriptor = [RKResponseDescriptor responseDescriptorWithMapping:statusMapping

‎Examples/RKTwitterCoreData/Classes/RKTwitterAppDelegate.m

+4-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,10 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
6565

6666
// Update date format so that we can parse Twitter dates properly
6767
// 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];
6972

7073
// Register our mappings with the provider
7174
RKResponseDescriptor *responseDescriptor = [RKResponseDescriptor responseDescriptorWithMapping:tweetMapping

0 commit comments

Comments
 (0)