From dda81a49186a83822e4e82e44c20bd07a799e23e Mon Sep 17 00:00:00 2001 From: Jeena Paradies Date: Thu, 23 Jun 2011 04:08:47 -0700 Subject: [PATCH] removed some tabs --- README | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README b/README index 53ac19a..c6da266 100644 --- a/README +++ b/README @@ -72,12 +72,12 @@ Sending data to rails It is possible to send a plist back into rails. On the iPhone you have to do for example: NSDictionary *aPost = [[NSDictionary alloc] initWithObjectsAndKeys: - @"A title", @"title", - @"Some text for body", @"body", nil]; + @"A title", @"title", + @"Some text for body", @"body", nil]; NSDictionary *aDict = [[NSDictionary alloc] initWithObjectsAndKeys:aPost, @"post", nil]; NSData *data = [NSPropertyListSerialization dataFromPropertyList:aDict - format:NSPropertyListBinaryFormat_v1_0 - errorDescription:nil]; + format:NSPropertyListBinaryFormat_v1_0 + errorDescription:nil]; NSURL *url = [NSURL URLWithString:@"http://example.com/posts.plist"]; NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:url];