aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.h4
-rw-r--r--iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.m6
-rw-r--r--iphone/FixMyStreet/Classes/InputTableViewController.m7
-rw-r--r--iphone/FixMyStreet/FixMyStreet.xcodeproj/matthew.mode1v315
-rw-r--r--iphone/FixMyStreet/FixMyStreet.xcodeproj/matthew.pbxuser377
5 files changed, 315 insertions, 94 deletions
diff --git a/iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.h b/iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.h
index 35dbb0837..048587695 100644
--- a/iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.h
+++ b/iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.h
@@ -16,7 +16,7 @@
UINavigationController *navigationController;
// The report currently being entered.
- UIImage* image;
+ NSData* image;
NSString* latitude;
NSString* longitude;
@@ -34,7 +34,7 @@
@property (nonatomic, retain) UINavigationController *navigationController;
//@property (nonatomic, retain) IBOutlet UIViewController *viewController;
-@property (nonatomic, retain) UIImage* image;
+@property (nonatomic, retain) NSData* image;
@property (nonatomic, retain) NSString* latitude;
@property (nonatomic, retain) NSString* longitude;
@property (nonatomic, retain) NSString* subject;
diff --git a/iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.m b/iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.m
index a58ba893b..8ad133ac8 100644
--- a/iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.m
+++ b/iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.m
@@ -32,6 +32,7 @@
phone = [[NSUserDefaults standardUserDefaults] stringForKey:@"Phone"];
subject = [[NSUserDefaults standardUserDefaults] stringForKey:@"Subject"];
+ image = [[NSUserDefaults standardUserDefaults] objectForKey:@"Image"];
// NSData *imageData = [[[NSUserDefaults standardUserDefaults] objectForKey:@"Image"] mutableCopy];
// if (imageData != nil)
// image = (UIImage *)[NSKeyedUnarchiver unarchiveObjectWithData:imageData];
@@ -89,6 +90,7 @@
// NSData *imageData = [NSKeyedArchiver archivedDataWithRootObject:image];
// [[NSUserDefaults standardUserDefaults] setObject:imageData forKey:@"Image"];
// [imageData release];
+ [[NSUserDefaults standardUserDefaults] setObject:image forKey:@"Image"];
[[NSUserDefaults standardUserDefaults] setObject:latitude forKey:@"Latitude"];
[[NSUserDefaults standardUserDefaults] setObject:longitude forKey:@"Longitude"];
@@ -167,12 +169,12 @@
}
if (image) {
- NSData *imageData = UIImageJPEGRepresentation(image, 0.8);
+// NSData *imageData = UIImageJPEGRepresentation(image, 0.8);
[postBody appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",stringBoundary] dataUsingEncoding:NSASCIIStringEncoding]];
[postBody appendData:[[NSString stringWithString:@"Content-Disposition: form-data; name=\"photo\"; filename=\"from_phone.jpeg\"\r\n"] dataUsingEncoding:NSASCIIStringEncoding]];
[postBody appendData:[[NSString stringWithString:@"Content-Type: image/jpeg\r\n"] dataUsingEncoding:NSASCIIStringEncoding]];
[postBody appendData:[[NSString stringWithString:@"Content-Transfer-Encoding: binary\r\n\r\n"] dataUsingEncoding:NSASCIIStringEncoding]];
- [postBody appendData:imageData];
+ [postBody appendData:image];
}
[postBody appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",stringBoundary] dataUsingEncoding:NSASCIIStringEncoding]];
diff --git a/iphone/FixMyStreet/Classes/InputTableViewController.m b/iphone/FixMyStreet/Classes/InputTableViewController.m
index 91c7ec5e9..7cd8f5d02 100644
--- a/iphone/FixMyStreet/Classes/InputTableViewController.m
+++ b/iphone/FixMyStreet/Classes/InputTableViewController.m
@@ -56,7 +56,9 @@
FixMyStreetAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
if (delegate.image) {
- imageView.image = delegate.image;
+ UIImage *newImage = [[UIImage alloc] initWithData:delegate.image];
+ imageView.image = newImage;
+ [newImage release];
}
}
@@ -255,7 +257,8 @@
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)newImage editingInfo:(NSDictionary *)editingInfo {
FixMyStreetAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
- delegate.image = newImage;
+ NSData *imageData = UIImageJPEGRepresentation(newImage, 0.8);
+ delegate.image = imageData;
imageView.image = newImage;
diff --git a/iphone/FixMyStreet/FixMyStreet.xcodeproj/matthew.mode1v3 b/iphone/FixMyStreet/FixMyStreet.xcodeproj/matthew.mode1v3
index f6b9fb6bf..110f01f61 100644
--- a/iphone/FixMyStreet/FixMyStreet.xcodeproj/matthew.mode1v3
+++ b/iphone/FixMyStreet/FixMyStreet.xcodeproj/matthew.mode1v3
@@ -331,7 +331,7 @@
<key>_historyCapacity</key>
<integer>0</integer>
<key>bookmark</key>
- <string>34D15BB20EB73D1100741406</string>
+ <string>34D15BD00EB73F9900741406</string>
<key>history</key>
<array>
<string>345579960EAEA273008C5D7F</string>
@@ -349,10 +349,10 @@
<string>34D15B450EB7306000741406</string>
<string>34D15B460EB7306000741406</string>
<string>34D15B760EB7358F00741406</string>
- <string>34D15B7D0EB735ED00741406</string>
<string>34D15BA90EB73D1100741406</string>
- <string>34D15BAB0EB73D1100741406</string>
- <string>34D15BAC0EB73D1100741406</string>
+ <string>34D15BBF0EB73F2600741406</string>
+ <string>34D15BCD0EB73F9900741406</string>
+ <string>34D15BCE0EB73F9900741406</string>
</array>
<key>prevStack</key>
<array>
@@ -415,6 +415,13 @@
<string>34D15BAE0EB73D1100741406</string>
<string>34D15BB00EB73D1100741406</string>
<string>34D15BB10EB73D1100741406</string>
+ <string>34D15BC20EB73F2600741406</string>
+ <string>34D15BC30EB73F2600741406</string>
+ <string>34D15BC40EB73F2600741406</string>
+ <string>34D15BC50EB73F2600741406</string>
+ <string>34D15BC60EB73F2600741406</string>
+ <string>34D15BC70EB73F2600741406</string>
+ <string>34D15BCF0EB73F9900741406</string>
</array>
</dict>
<key>SplitCount</key>
diff --git a/iphone/FixMyStreet/FixMyStreet.xcodeproj/matthew.pbxuser b/iphone/FixMyStreet/FixMyStreet.xcodeproj/matthew.pbxuser
index b27f5d7ea..83fb11fe0 100644
--- a/iphone/FixMyStreet/FixMyStreet.xcodeproj/matthew.pbxuser
+++ b/iphone/FixMyStreet/FixMyStreet.xcodeproj/matthew.pbxuser
@@ -3,16 +3,16 @@
1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1229, 756}}";
- sepNavSelRange = "{875, 0}";
- sepNavVisRange = "{0, 1203}";
+ sepNavSelRange = "{873, 0}";
+ sepNavVisRange = "{0, 1201}";
sepNavWindowFrame = "{{15, 94}, {738, 1079}}";
};
};
1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1229, 3290}}";
- sepNavSelRange = "{4201, 0}";
- sepNavVisRange = "{2940, 2319}";
+ sepNavIntBoundsRect = "{{0, 0}, {1229, 3192}}";
+ sepNavSelRange = "{1860, 0}";
+ sepNavVisRange = "{32, 2913}";
sepNavWindowFrame = "{{130, 510}, {750, 558}}";
};
};
@@ -248,6 +248,25 @@
34D15BB00EB73D1100741406 /* PBXTextBookmark */ = 34D15BB00EB73D1100741406 /* PBXTextBookmark */;
34D15BB10EB73D1100741406 /* PBXTextBookmark */ = 34D15BB10EB73D1100741406 /* PBXTextBookmark */;
34D15BB20EB73D1100741406 /* PBXTextBookmark */ = 34D15BB20EB73D1100741406 /* PBXTextBookmark */;
+ 34D15BB90EB73DFB00741406 /* PBXTextBookmark */ = 34D15BB90EB73DFB00741406 /* PBXTextBookmark */;
+ 34D15BBA0EB73DFB00741406 /* PBXTextBookmark */ = 34D15BBA0EB73DFB00741406 /* PBXTextBookmark */;
+ 34D15BBC0EB73E0F00741406 /* PBXTextBookmark */ = 34D15BBC0EB73E0F00741406 /* PBXTextBookmark */;
+ 34D15BBF0EB73F2600741406 /* PBXTextBookmark */ = 34D15BBF0EB73F2600741406 /* PBXTextBookmark */;
+ 34D15BC00EB73F2600741406 /* PBXTextBookmark */ = 34D15BC00EB73F2600741406 /* PBXTextBookmark */;
+ 34D15BC10EB73F2600741406 /* PBXTextBookmark */ = 34D15BC10EB73F2600741406 /* PBXTextBookmark */;
+ 34D15BC20EB73F2600741406 /* PBXTextBookmark */ = 34D15BC20EB73F2600741406 /* PBXTextBookmark */;
+ 34D15BC30EB73F2600741406 /* PBXTextBookmark */ = 34D15BC30EB73F2600741406 /* PBXTextBookmark */;
+ 34D15BC40EB73F2600741406 /* PBXTextBookmark */ = 34D15BC40EB73F2600741406 /* PBXTextBookmark */;
+ 34D15BC50EB73F2600741406 /* PBXTextBookmark */ = 34D15BC50EB73F2600741406 /* PBXTextBookmark */;
+ 34D15BC60EB73F2600741406 /* PBXTextBookmark */ = 34D15BC60EB73F2600741406 /* PBXTextBookmark */;
+ 34D15BC70EB73F2600741406 /* PBXTextBookmark */ = 34D15BC70EB73F2600741406 /* PBXTextBookmark */;
+ 34D15BC80EB73F2600741406 /* PBXTextBookmark */ = 34D15BC80EB73F2600741406 /* PBXTextBookmark */;
+ 34D15BCA0EB73F6B00741406 /* PBXTextBookmark */ = 34D15BCA0EB73F6B00741406 /* PBXTextBookmark */;
+ 34D15BCB0EB73F6B00741406 /* PBXTextBookmark */ = 34D15BCB0EB73F6B00741406 /* PBXTextBookmark */;
+ 34D15BCD0EB73F9900741406 /* PBXTextBookmark */ = 34D15BCD0EB73F9900741406 /* PBXTextBookmark */;
+ 34D15BCE0EB73F9900741406 /* PBXTextBookmark */ = 34D15BCE0EB73F9900741406 /* PBXTextBookmark */;
+ 34D15BCF0EB73F9900741406 /* PBXTextBookmark */ = 34D15BCF0EB73F9900741406 /* PBXTextBookmark */;
+ 34D15BD00EB73F9900741406 /* PBXTextBookmark */ = 34D15BD00EB73F9900741406 /* PBXTextBookmark */;
34E450560EB12D0200881C31 = 34E450560EB12D0200881C31 /* PBXTextBookmark */;
34E450570EB12D0200881C31 = 34E450570EB12D0200881C31 /* PBXTextBookmark */;
34E450580EB12D0200881C31 = 34E450580EB12D0200881C31 /* PBXTextBookmark */;
@@ -341,7 +360,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 33";
rLen = 0;
- rLoc = 2919;
+ rLoc = 2991;
rType = 0;
vrLen = 1848;
vrLoc = 0;
@@ -597,9 +616,9 @@
};
347712730E8D367F0051DFFD /* InputTableViewController.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {752, 4662}}";
- sepNavSelRange = "{8609, 9}";
- sepNavVisRange = "{8479, 739}";
+ sepNavIntBoundsRect = "{{0, 0}, {1229, 4802}}";
+ sepNavSelRange = "{1972, 0}";
+ sepNavVisRange = "{927, 2070}";
sepNavWindowFrame = "{{1082, 467}, {750, 558}}";
};
};
@@ -814,7 +833,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 280";
rLen = 0;
- rLoc = 10100;
+ rLoc = 10251;
rType = 0;
vrLen = 1873;
vrLoc = 9166;
@@ -823,7 +842,7 @@
isa = PBXTextBookmark;
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
rLen = 9;
- rLoc = 8609;
+ rLoc = 8694;
rType = 0;
};
34D15B450EB7306000741406 /* PBXTextBookmark */ = {
@@ -861,7 +880,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 37";
rLen = 0;
- rLoc = 875;
+ rLoc = 873;
rType = 0;
vrLen = 1201;
vrLoc = 0;
@@ -871,7 +890,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 35";
rLen = 0;
- rLoc = 1791;
+ rLoc = 1863;
rType = 0;
vrLen = 2768;
vrLoc = 8657;
@@ -881,7 +900,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 317";
rLen = 0;
- rLoc = 11449;
+ rLoc = 11600;
rType = 0;
vrLen = 1957;
vrLoc = 9479;
@@ -901,7 +920,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 197";
rLen = 0;
- rLoc = 10802;
+ rLoc = 10946;
rType = 0;
vrLen = 2752;
vrLoc = 0;
@@ -911,7 +930,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 38";
rLen = 0;
- rLoc = 932;
+ rLoc = 930;
rType = 0;
vrLen = 1237;
vrLoc = 0;
@@ -921,7 +940,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 197";
rLen = 0;
- rLoc = 10802;
+ rLoc = 10946;
rType = 0;
vrLen = 2752;
vrLoc = 0;
@@ -931,7 +950,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 21";
rLen = 0;
- rLoc = 460;
+ rLoc = 459;
rType = 0;
vrLen = 1237;
vrLoc = 0;
@@ -941,7 +960,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 90";
rLen = 0;
- rLoc = 4222;
+ rLoc = 4368;
rType = 0;
vrLen = 2340;
vrLoc = 2995;
@@ -961,7 +980,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 267";
rLen = 10;
- rLoc = 9536;
+ rLoc = 9687;
rType = 0;
vrLen = 1695;
vrLoc = 8551;
@@ -971,7 +990,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 21";
rLen = 0;
- rLoc = 460;
+ rLoc = 459;
rType = 0;
vrLen = 1237;
vrLoc = 0;
@@ -981,7 +1000,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 90";
rLen = 0;
- rLoc = 4222;
+ rLoc = 4368;
rType = 0;
vrLen = 2256;
vrLoc = 3079;
@@ -991,7 +1010,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 274";
rLen = 0;
- rLoc = 9884;
+ rLoc = 10035;
rType = 0;
vrLen = 1705;
vrLoc = 8551;
@@ -1001,7 +1020,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 156";
rLen = 64;
- rLoc = 8077;
+ rLoc = 8223;
rType = 0;
vrLen = 4147;
vrLoc = 5534;
@@ -1011,7 +1030,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 275";
rLen = 0;
- rLoc = 10025;
+ rLoc = 10176;
rType = 0;
vrLen = 1765;
vrLoc = 8551;
@@ -1021,7 +1040,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 39";
rLen = 0;
- rLoc = 972;
+ rLoc = 970;
rType = 0;
vrLen = 1203;
vrLoc = 0;
@@ -1031,7 +1050,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 157";
rLen = 0;
- rLoc = 8224;
+ rLoc = 8370;
rType = 0;
vrLen = 2375;
vrLoc = 764;
@@ -1041,7 +1060,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 275";
rLen = 0;
- rLoc = 10025;
+ rLoc = 10176;
rType = 0;
vrLen = 1765;
vrLoc = 8551;
@@ -1051,7 +1070,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 41";
rLen = 0;
- rLoc = 2153;
+ rLoc = 2225;
rType = 0;
vrLen = 2243;
vrLoc = 2017;
@@ -1061,7 +1080,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 275";
rLen = 0;
- rLoc = 10025;
+ rLoc = 10176;
rType = 0;
vrLen = 1469;
vrLoc = 7267;
@@ -1071,7 +1090,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 66";
rLen = 0;
- rLoc = 3084;
+ rLoc = 3156;
rType = 0;
vrLen = 2180;
vrLoc = 2455;
@@ -1091,7 +1110,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 57";
rLen = 0;
- rLoc = 1894;
+ rLoc = 1979;
rType = 0;
vrLen = 2046;
vrLoc = 923;
@@ -1101,7 +1120,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 170";
rLen = 63;
- rLoc = 8963;
+ rLoc = 9111;
rType = 0;
vrLen = 3911;
vrLoc = 6398;
@@ -1111,7 +1130,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 254";
rLen = 0;
- rLoc = 9186;
+ rLoc = 9337;
rType = 0;
vrLen = 1801;
vrLoc = 8443;
@@ -1121,7 +1140,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 37";
rLen = 0;
- rLoc = 875;
+ rLoc = 873;
rType = 0;
vrLen = 1201;
vrLoc = 0;
@@ -1131,7 +1150,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 176";
rLen = 0;
- rLoc = 9635;
+ rLoc = 9779;
rType = 0;
vrLen = 3934;
vrLoc = 6195;
@@ -1141,7 +1160,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 37";
rLen = 0;
- rLoc = 875;
+ rLoc = 873;
rType = 0;
vrLen = 1201;
vrLoc = 0;
@@ -1151,7 +1170,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 176";
rLen = 0;
- rLoc = 9635;
+ rLoc = 9779;
rType = 0;
vrLen = 3934;
vrLoc = 6195;
@@ -1161,7 +1180,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 254";
rLen = 0;
- rLoc = 9186;
+ rLoc = 9337;
rType = 0;
vrLen = 1750;
vrLoc = 8443;
@@ -1171,7 +1190,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 176";
rLen = 0;
- rLoc = 9635;
+ rLoc = 9779;
rType = 0;
vrLen = 3934;
vrLoc = 6195;
@@ -1181,7 +1200,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 37";
rLen = 0;
- rLoc = 875;
+ rLoc = 873;
rType = 0;
vrLen = 1201;
vrLoc = 0;
@@ -1191,7 +1210,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 35";
rLen = 0;
- rLoc = 1791;
+ rLoc = 1863;
rType = 0;
vrLen = 2945;
vrLoc = 0;
@@ -1201,7 +1220,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 317";
rLen = 0;
- rLoc = 11449;
+ rLoc = 11600;
rType = 0;
vrLen = 1957;
vrLoc = 9479;
@@ -1211,7 +1230,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 35";
rLen = 0;
- rLoc = 1791;
+ rLoc = 1863;
rType = 0;
vrLen = 2768;
vrLoc = 8657;
@@ -1221,7 +1240,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 59";
rLen = 0;
- rLoc = 1886;
+ rLoc = 1941;
rType = 0;
vrLen = 1777;
vrLoc = 600;
@@ -1231,7 +1250,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 241";
rLen = 9;
- rLoc = 8609;
+ rLoc = 8694;
rType = 0;
vrLen = 802;
vrLoc = 8479;
@@ -1251,7 +1270,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 267";
rLen = 0;
- rLoc = 9326;
+ rLoc = 9477;
rType = 0;
vrLen = 2167;
vrLoc = 1891;
@@ -1261,7 +1280,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 267";
rLen = 0;
- rLoc = 9326;
+ rLoc = 9477;
rType = 0;
vrLen = 2167;
vrLoc = 1891;
@@ -1281,7 +1300,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 258";
rLen = 0;
- rLoc = 9180;
+ rLoc = 9326;
rType = 0;
vrLen = 1893;
vrLoc = 8607;
@@ -1291,7 +1310,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 258";
rLen = 0;
- rLoc = 9180;
+ rLoc = 9326;
rType = 0;
vrLen = 1893;
vrLoc = 8607;
@@ -1301,7 +1320,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 37";
rLen = 0;
- rLoc = 875;
+ rLoc = 873;
rType = 0;
vrLen = 1201;
vrLoc = 0;
@@ -1311,7 +1330,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 258";
rLen = 0;
- rLoc = 9180;
+ rLoc = 9326;
rType = 0;
vrLen = 1893;
vrLoc = 8607;
@@ -1321,7 +1340,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 37";
rLen = 0;
- rLoc = 875;
+ rLoc = 873;
rType = 0;
vrLen = 1203;
vrLoc = 0;
@@ -1331,7 +1350,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 37";
rLen = 0;
- rLoc = 875;
+ rLoc = 873;
rType = 0;
vrLen = 1203;
vrLoc = 0;
@@ -1341,7 +1360,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 35";
rLen = 0;
- rLoc = 1791;
+ rLoc = 1863;
rType = 0;
vrLen = 2768;
vrLoc = 8657;
@@ -1351,7 +1370,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 37";
rLen = 0;
- rLoc = 875;
+ rLoc = 873;
rType = 0;
vrLen = 1203;
vrLoc = 0;
@@ -1361,7 +1380,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 176";
rLen = 0;
- rLoc = 9630;
+ rLoc = 9774;
rType = 0;
vrLen = 3705;
vrLoc = 6821;
@@ -1371,7 +1390,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 176";
rLen = 0;
- rLoc = 9630;
+ rLoc = 9774;
rType = 0;
vrLen = 3705;
vrLoc = 6821;
@@ -1381,7 +1400,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 38";
rLen = 0;
- rLoc = 1994;
+ rLoc = 2066;
rType = 0;
vrLen = 2326;
vrLoc = 1640;
@@ -1391,7 +1410,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 91";
rLen = 0;
- rLoc = 4201;
+ rLoc = 4273;
rType = 0;
vrLen = 2082;
vrLoc = 2846;
@@ -1401,7 +1420,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 91";
rLen = 0;
- rLoc = 4221;
+ rLoc = 4367;
rType = 0;
vrLen = 2038;
vrLoc = 2846;
@@ -1411,7 +1430,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 241";
rLen = 9;
- rLoc = 8609;
+ rLoc = 8694;
rType = 0;
vrLen = 708;
vrLoc = 8479;
@@ -1421,7 +1440,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 91";
rLen = 0;
- rLoc = 4221;
+ rLoc = 4367;
rType = 0;
vrLen = 2086;
vrLoc = 2846;
@@ -1431,7 +1450,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 91";
rLen = 0;
- rLoc = 4221;
+ rLoc = 4367;
rType = 0;
vrLen = 2092;
vrLoc = 2846;
@@ -1441,7 +1460,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 91";
rLen = 0;
- rLoc = 4221;
+ rLoc = 4367;
rType = 0;
vrLen = 2086;
vrLoc = 2846;
@@ -1451,7 +1470,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 91";
rLen = 0;
- rLoc = 4221;
+ rLoc = 4367;
rType = 0;
vrLen = 2226;
vrLoc = 2846;
@@ -1461,7 +1480,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 35";
rLen = 0;
- rLoc = 1874;
+ rLoc = 1946;
rType = 0;
vrLen = 2848;
vrLoc = 0;
@@ -1471,7 +1490,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 38";
rLen = 0;
- rLoc = 1994;
+ rLoc = 2066;
rType = 0;
vrLen = 2850;
vrLoc = 0;
@@ -1481,7 +1500,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 35";
rLen = 0;
- rLoc = 1874;
+ rLoc = 1946;
rType = 0;
vrLen = 2888;
vrLoc = 32;
@@ -1491,7 +1510,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 35";
rLen = 0;
- rLoc = 1874;
+ rLoc = 1946;
rType = 0;
vrLen = 2888;
vrLoc = 32;
@@ -1501,7 +1520,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 35";
rLen = 0;
- rLoc = 1814;
+ rLoc = 1886;
rType = 0;
vrLen = 2889;
vrLoc = 32;
@@ -1526,7 +1545,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 37";
rLen = 0;
- rLoc = 875;
+ rLoc = 873;
rType = 0;
vrLen = 1203;
vrLoc = 0;
@@ -1536,7 +1555,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 35";
rLen = 0;
- rLoc = 1814;
+ rLoc = 1886;
rType = 0;
vrLen = 2889;
vrLoc = 32;
@@ -1546,7 +1565,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 35";
rLen = 0;
- rLoc = 1814;
+ rLoc = 1886;
rType = 0;
vrLen = 2889;
vrLoc = 32;
@@ -1571,7 +1590,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 35";
rLen = 0;
- rLoc = 1814;
+ rLoc = 1886;
rType = 0;
vrLen = 2889;
vrLoc = 32;
@@ -1581,7 +1600,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 37";
rLen = 0;
- rLoc = 875;
+ rLoc = 873;
rType = 0;
vrLen = 1203;
vrLoc = 0;
@@ -1591,11 +1610,201 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 91";
rLen = 0;
- rLoc = 4201;
+ rLoc = 4273;
rType = 0;
vrLen = 2319;
vrLoc = 2940;
};
+ 34D15BB90EB73DFB00741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
+ name = "FixMyStreetAppDelegate.m: 91";
+ rLen = 0;
+ rLoc = 4273;
+ rType = 0;
+ vrLen = 3755;
+ vrLoc = 6553;
+ };
+ 34D15BBA0EB73DFB00741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
+ name = "FixMyStreetAppDelegate.m: 88";
+ rLen = 0;
+ rLoc = 4112;
+ rType = 0;
+ vrLen = 2176;
+ vrLoc = 2565;
+ };
+ 34D15BBC0EB73E0F00741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
+ name = "FixMyStreetAppDelegate.m: 88";
+ rLen = 0;
+ rLoc = 4112;
+ rType = 0;
+ vrLen = 2186;
+ vrLoc = 2565;
+ };
+ 34D15BBF0EB73F2600741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
+ name = "FixMyStreetAppDelegate.h: 37";
+ rLen = 0;
+ rLoc = 873;
+ rType = 0;
+ vrLen = 1201;
+ vrLoc = 0;
+ };
+ 34D15BC00EB73F2600741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
+ name = "FixMyStreetAppDelegate.m: 171";
+ rLen = 65;
+ rLoc = 9109;
+ rType = 0;
+ vrLen = 4237;
+ vrLoc = 5599;
+ };
+ 34D15BC10EB73F2600741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
+ name = "InputTableViewController.m: 258";
+ rLen = 0;
+ rLoc = 9326;
+ rType = 0;
+ vrLen = 1893;
+ vrLoc = 8607;
+ };
+ 34D15BC20EB73F2600741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
+ name = "FixMyStreetAppDelegate.m: 88";
+ rLen = 0;
+ rLoc = 4112;
+ rType = 0;
+ vrLen = 2258;
+ vrLoc = 2565;
+ };
+ 34D15BC30EB73F2600741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
+ name = "FixMyStreetAppDelegate.h: 37";
+ rLen = 0;
+ rLoc = 873;
+ rType = 0;
+ vrLen = 1201;
+ vrLoc = 0;
+ };
+ 34D15BC40EB73F2600741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
+ name = "FixMyStreetAppDelegate.m: 92";
+ rLen = 0;
+ rLoc = 4367;
+ rType = 0;
+ vrLen = 2894;
+ vrLoc = 0;
+ };
+ 34D15BC50EB73F2600741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
+ name = "InputTableViewController.m: 258";
+ rLen = 0;
+ rLoc = 9326;
+ rType = 0;
+ vrLen = 1893;
+ vrLoc = 8607;
+ };
+ 34D15BC60EB73F2600741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
+ name = "FixMyStreetAppDelegate.h: 37";
+ rLen = 0;
+ rLoc = 873;
+ rType = 0;
+ vrLen = 1201;
+ vrLoc = 0;
+ };
+ 34D15BC70EB73F2600741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
+ name = "FixMyStreetAppDelegate.m: 171";
+ rLen = 65;
+ rLoc = 9109;
+ rType = 0;
+ vrLen = 4237;
+ vrLoc = 5599;
+ };
+ 34D15BC80EB73F2600741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
+ name = "InputTableViewController.m: 258";
+ rLen = 0;
+ rLoc = 9295;
+ rType = 0;
+ vrLen = 1699;
+ vrLoc = 8607;
+ };
+ 34D15BCA0EB73F6B00741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
+ name = "InputTableViewController.m: 258";
+ rLen = 0;
+ rLoc = 9295;
+ rType = 0;
+ vrLen = 1762;
+ vrLoc = 8607;
+ };
+ 34D15BCB0EB73F6B00741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
+ name = "InputTableViewController.m: 61";
+ rLen = 0;
+ rLoc = 1972;
+ rType = 0;
+ vrLen = 1852;
+ vrLoc = 927;
+ };
+ 34D15BCD0EB73F9900741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
+ name = "InputTableViewController.m: 61";
+ rLen = 0;
+ rLoc = 1972;
+ rType = 0;
+ vrLen = 2070;
+ vrLoc = 927;
+ };
+ 34D15BCE0EB73F9900741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
+ name = "FixMyStreetAppDelegate.m: 171";
+ rLen = 65;
+ rLoc = 9109;
+ rType = 0;
+ vrLen = 4237;
+ vrLoc = 5599;
+ };
+ 34D15BCF0EB73F9900741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
+ name = "InputTableViewController.m: 61";
+ rLen = 0;
+ rLoc = 1972;
+ rType = 0;
+ vrLen = 2070;
+ vrLoc = 927;
+ };
+ 34D15BD00EB73F9900741406 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
+ name = "FixMyStreetAppDelegate.m: 35";
+ rLen = 0;
+ rLoc = 1860;
+ rType = 0;
+ vrLen = 2913;
+ vrLoc = 32;
+ };
34E450560EB12D0200881C31 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 34C17A8D0EB0CCD300768D1C /* AboutViewController.h */;
@@ -1631,7 +1840,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 313";
rLen = 0;
- rLoc = 11433;
+ rLoc = 11584;
rType = 0;
vrLen = 1748;
vrLoc = 0;
@@ -1681,7 +1890,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 42";
rLen = 0;
- rLoc = 1181;
+ rLoc = 1179;
rType = 0;
vrLen = 1132;
vrLoc = 0;
@@ -1691,7 +1900,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 197";
rLen = 0;
- rLoc = 10802;
+ rLoc = 10946;
rType = 0;
vrLen = 2752;
vrLoc = 0;
@@ -1731,7 +1940,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 197";
rLen = 0;
- rLoc = 10802;
+ rLoc = 10946;
rType = 0;
vrLen = 2360;
vrLoc = 1204;
@@ -1771,7 +1980,7 @@
fRef = 347712730E8D367F0051DFFD /* InputTableViewController.m */;
name = "InputTableViewController.m: 313";
rLen = 0;
- rLoc = 11433;
+ rLoc = 11584;
rType = 0;
vrLen = 1748;
vrLoc = 0;
@@ -1821,7 +2030,7 @@
fRef = 1D3623240D0F684500981E51 /* FixMyStreetAppDelegate.h */;
name = "FixMyStreetAppDelegate.h: 42";
rLen = 0;
- rLoc = 1181;
+ rLoc = 1179;
rType = 0;
vrLen = 1132;
vrLoc = 0;
@@ -1831,7 +2040,7 @@
fRef = 1D3623250D0F684500981E51 /* FixMyStreetAppDelegate.m */;
name = "FixMyStreetAppDelegate.m: 197";
rLen = 0;
- rLoc = 10802;
+ rLoc = 10946;
rType = 0;
vrLen = 2752;
vrLoc = 0;