diff --git a/Classes/MapViewController.m b/Classes/MapViewController.m index 64f1f0e..1bb96a5 100644 --- a/Classes/MapViewController.m +++ b/Classes/MapViewController.m @@ -55,6 +55,7 @@ - (void)viewDidLoad { [self addAnnotations]; } [super viewDidLoad]; + NSLog(@"::END::viewDidLoad"); } - (void)didReceiveMemoryWarning { @@ -130,10 +131,26 @@ -(void) mapView:(MKMapView *)mv annotationView:(MKAnnotationView *)view calloutA -(void)refresh { NSLog(@"refresh"); + UIActivityIndicatorView *spinner = [[UIActivityIndicatorView alloc] + initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; + + CGRect appFrame = [[UIScreen mainScreen]applicationFrame]; + int x = (appFrame.size.width/2) - 16; + int y = (appFrame.size.height/2) - 16; + [spinner setFrame:CGRectMake( x, y, 32, 32)]; + [spinner startAnimating]; + + [[self view] addSubview:spinner]; + + NSArray *ants = [mapView annotations]; [mapView removeAnnotations:ants]; [self addAnnotations]; + + [spinner removeFromSuperview]; + + [spinner release]; NSLog(@"::END:: refresh"); } diff --git a/Classes/OpenPlaquesAppDelegate.h b/Classes/OpenPlaquesAppDelegate.h index 1ef2767..ab7c449 100644 --- a/Classes/OpenPlaquesAppDelegate.h +++ b/Classes/OpenPlaquesAppDelegate.h @@ -52,7 +52,7 @@ - (NSString *)applicationDocumentsDirectory; -(void) createMap; -- (void) parsePlaques; +- (void) parsePlaques:(NSData *)plaqueData; -(void) storeData; -(void) storeData:(PlaqueVO *)plaque; -(void) retrieveData; diff --git a/Classes/OpenPlaquesAppDelegate.m b/Classes/OpenPlaquesAppDelegate.m index f030d19..67b97be 100644 --- a/Classes/OpenPlaquesAppDelegate.m +++ b/Classes/OpenPlaquesAppDelegate.m @@ -39,14 +39,21 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( plaqueList = [[NSMutableDictionary alloc] init]; - plaquesToSave = [[NSMutableArray alloc] init]; + plaquesToSave = [[[NSMutableArray alloc] init] retain]; - if([CLLocationManager locationServicesEnabled]) + locationManager = [[CLLocationManager alloc] init]; + + float version = [[[UIDevice currentDevice] systemVersion] floatValue]; + if(version < 4.0f) + locationAllowed = locationManager.locationServicesEnabled; + else + locationAllowed = [CLLocationManager locationServicesEnabled]; + + if(locationAllowed) { //NSLog(@"location manager location services enabled"); - locationManager = [[CLLocationManager alloc] init]; //NSLog(@"location manager created"); [locationManager setDesiredAccuracy:kCLLocationAccuracyBest]; @@ -57,15 +64,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( else { //NSLog(@"location manager location services NOT enabled"); - UIAlertView *alert = [[UIAlertView alloc] - initWithTitle:@"Location Manager" - message:@"This app requires location services that your device does not support. I'm really sorry." - delegate:nil - cancelButtonTitle:@"Understood" - otherButtonTitles:nil]; - - [alert show]; - [alert release]; + [svc showLocationAlert]; [self createMap]; } @@ -81,7 +80,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( */ - (void)applicationWillTerminate:(UIApplication *)application { - NSLog(@"applicationWillTerminate"); + //NSLog(@"applicationWillTerminate"); NSError *error = nil; if (managedObjectContext_ != nil) @@ -194,6 +193,7 @@ - (void)dealloc { [managedObjectContext_ release]; [managedObjectModel_ release]; [persistentStoreCoordinator_ release]; + [svc release]; [window release]; [super dealloc]; @@ -214,7 +214,7 @@ -(void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data{ -(void) connectionDidFinishLoading:(NSURLConnection *)connection{ [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO]; - [self parsePlaques]; + [self parsePlaques:receivedData]; if([plaquesToSave count] > 0) { @@ -227,16 +227,7 @@ -(void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)err if(plaqueList == nil || [plaqueList count] == 0) { - - UIAlertView *alert = [[UIAlertView alloc] - initWithTitle:@"Open Plaques data connection Error" - message:@"No new data could be retrieved from Open Plaques at this time." - delegate:nil - cancelButtonTitle:@"OK" - otherButtonTitles:nil]; - - [alert show]; - [alert release]; + [svc showDataRetreivalFailureAlert]; } [self createMap]; } @@ -252,17 +243,21 @@ -(void) getPlaquesFromStorage NSString* path = [[NSBundle mainBundle] pathForResource:@"plaques" ofType:@"json"]; - if(receivedData != nil) - [receivedData release]; + NSMutableData *plaqueData = [[[NSMutableData alloc] initWithContentsOfFile:path] retain]; - //receivedData =[[[NSMutableData data] initWithContentsOfFile:path] retain]; + [self parsePlaques:plaqueData]; - receivedData = [[[NSMutableData alloc] initWithContentsOfFile:path] retain]; + NSError *error; + /// save the file date so we know when to fetch the plaques since from openplaques.org + maxUploadDate = @"2010-10-09'T'12:20:00'Z'"; + [maxUploadDate writeToFile:[self dataFilePath] atomically:YES encoding:NSUnicodeStringEncoding error:&error]; + + // now go and fetch everything that happened since last time + [self makeAPIRequest]; - [self parsePlaques]; } --(void) parsePlaques +-(void) parsePlaques:(NSData *)plaqueData { NSLog(@"parsePlaques"); //(@"Parsing retrieved data as plaques"); @@ -270,7 +265,7 @@ -(void) parsePlaques SBJSON *jsonParser = [[SBJSON alloc] init]; NSString *jsonString = [[NSString alloc] - initWithData:receivedData + initWithData:plaqueData encoding:NSUTF8StringEncoding]; //NSLog(@"Json String %@", jsonString); NSError *jsonError = nil; @@ -343,7 +338,7 @@ -(void) parsePlaques [plaque setPlaqueId:[plaqueDetails objectForKey:@"id"]]; [plaquesToSave addObject:plaque]; - if([CLLocationManager locationServicesEnabled] + if(locationAllowed && [plaque isInDisplayableLocation:[locationManager location]]) { [plaqueList setObject:plaque forKey:[plaque plaqueId]]; @@ -358,11 +353,12 @@ -(void) parsePlaques //NSLog(@"New plaque count = %d", newPlaqueCount); [self createMap]; } + [plaqueData release]; } -(void) createMap { - NSLog(@"createMap"); + //NSLog(@"createMap"); if([navController visibleViewController] != nil) { @@ -373,7 +369,7 @@ -(void) createMap } else { - NSLog(@"createMap"); + //NSLog(@"createMap"); [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO]; MapViewController *mvc = [[MapViewController alloc]init]; [[mvc view] setFrame:[[UIScreen mainScreen] applicationFrame]]; @@ -388,7 +384,7 @@ -(void) createMap - (void) retrieveData { - NSLog(@"retrieveData"); + //NSLog(@"retrieveData"); currentLocation = [locationManager location]; MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(currentLocation.coordinate, 100000.0, 100000.0); CLLocationCoordinate2D northWestCorner, southEastCorner; @@ -407,8 +403,8 @@ - (void) retrieveData NSError *error; - NSUInteger *numRecords = (NSUInteger *)[[self managedObjectContext] countForFetchRequest:request error:&error]; - + int numRecords = [[self managedObjectContext] countForFetchRequest:request error:&error]; + NSLog(@"The number of record are %d", numRecords); NSString *filePath = [self dataFilePath]; if([[NSFileManager defaultManager] fileExistsAtPath:filePath]) { @@ -416,19 +412,11 @@ - (void) retrieveData } // if we cannot retrieve our data or there is no data stored then make an API request - if(numRecords == nil - || numRecords == 0) + if(numRecords < 3000) { [request release]; - [self getPlaquesFromStorage]; - - /// save the file date so we know when to fetch the plaques since from openplaques.org - maxUploadDate = @"2010-10-09'T'12:20:00'Z'"; - [maxUploadDate writeToFile:[self dataFilePath] atomically:YES encoding:NSUnicodeStringEncoding error:&error]; - - // now go and fetch everything that happened since last time - [self performSelectorOnMainThread:@selector(makeAPIRequest) withObject:nil waitUntilDone:false]; + [self performSelectorOnMainThread:@selector(getPlaquesFromStorage) withObject:nil waitUntilDone:false]; } else { @@ -453,34 +441,18 @@ - (void) retrieveData [self performSelectorOnMainThread:@selector(makeAPIRequest) withObject:nil waitUntilDone:false]; - if(maxUploadDate != nil) - { - //NSLog(@"Max upload date is %@", maxUploadDate); - - NSDateFormatter *df = [[NSDateFormatter alloc] init]; - [df setDateFormat:@"yyyy-MM-dd'T'hh:mm:ss'Z'"]; - - NSString *today = [df stringFromDate:[NSDate date]]; - [df release]; - //NSLog(@"Setting last upload date to be %@", today); - - [today writeToFile:[self dataFilePath] atomically:YES encoding:NSUnicodeStringEncoding error:&error]; - - [self performSelectorOnMainThread:@selector(createMap) withObject:nil waitUntilDone:false]; - } - else { - - UIAlertView *alert = [[UIAlertView alloc] - initWithTitle:@"Data Load in Progress" - message:@"Open Plaques was quit before initial data load completed. We are now loading the initial data. This may take several minutes. Please do not close the app until you are alerted that the loaded data has been saved." - delegate:nil - cancelButtonTitle:@"OK" - otherButtonTitles:nil]; - - [alert show]; - [alert release]; - } - + //NSLog(@"Max upload date is %@", maxUploadDate); + + NSDateFormatter *df = [[NSDateFormatter alloc] init]; + [df setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss'Z'"]; + + NSString *today = [df stringFromDate:[NSDate date]]; + [df release]; + //NSLog(@"Setting last upload date to be %@", today); + + [today writeToFile:[self dataFilePath] atomically:YES encoding:NSUnicodeStringEncoding error:&error]; + + [self performSelectorOnMainThread:@selector(createMap) withObject:nil waitUntilDone:false]; } } @@ -527,13 +499,13 @@ -(id) transformManagedObjectToPlaqueVO:(NSManagedObject *) storedPlaque - (void) storeData { NSLog(@"Store data %d", [plaquesToSave count]); - NSArray *toSave = [[NSArray alloc]initWithArray:plaquesToSave]; - [plaquesToSave removeAllObjects]; + //NSArray *toSave = [[NSArray alloc]initWithArray:plaquesToSave]; + //[plaquesToSave removeAllObjects]; NSOperationQueue *queue = [NSOperationQueue new]; NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self - selector:@selector(saveDataWithOperation:) - object:toSave]; + selector:@selector(saveDataWithOperation) + object:NULL]; /* Add the operation to the queue */ [queue addOperation:operation]; @@ -541,81 +513,96 @@ - (void) storeData [queue release]; } --(void)saveDataWithOperation:(id) toSave{ - NSLog(@"saveDataWithOperation %@", toSave); +-(void)saveDataWithOperation{ + NSLog(@"saveDataWithOperation"); NSError *error; int storedItems = 0; - NSLog(@"storing %d plaques from list", [toSave count]); - for(PlaqueVO *plaque in toSave) + + NSFetchRequest *request = [[NSFetchRequest alloc]init]; + + NSEntityDescription *entityDescription = [NSEntityDescription entityForName:@"Plaque" inManagedObjectContext:[self managedObjectContext]]; + [request setEntity:entityDescription]; + //NSLog(@"storing %d plaques from list", [plaquesToSave count]); + if(plaquesToSave != nil) { - [self storeData:plaque]; - storedItems++; + + for(PlaqueVO *plaque in plaquesToSave) + { + //[self storeData:plaque]; + int plaqueId = [[plaque plaqueId] intValue]; + [request setPredicate:[NSPredicate predicateWithFormat:@"(id = %d)", plaqueId]]; + + NSManagedObject *thePlaque = nil; + + NSArray *objects = [[self managedObjectContext] executeFetchRequest:request error:&error]; + + if(objects == nil) + { + NSLog(@"Got an error storing plaque %@", [plaque plaqueId]); + continue; + } + + if([objects count] > 0) + thePlaque = [objects objectAtIndex:0]; + else + thePlaque = [NSEntityDescription insertNewObjectForEntityForName:@"Plaque" inManagedObjectContext:[self managedObjectContext]]; + + [thePlaque setValue:[NSNumber numberWithInt:plaqueId] forKey:@"id"]; + [thePlaque setValue:[NSString stringWithFormat:@"%@", [plaque colour]] forKey:@"colour"]; + [thePlaque setValue:[plaque inscription] forKey:@"inscription"]; + + if([plaque organization] != nil) + [thePlaque setValue:[plaque organization] forKey:@"organisation"]; + + if([plaque location] != nil + && ![[plaque location] isKindOfClass:[NSNull class]]) + { + [thePlaque setValue:[plaque location] forKey:@"location"]; + } + + + if([plaque imgUrl] != nil) + [thePlaque setValue:[plaque imgUrl] forKey:@"image_url"]; + if([plaque ownerName] != nil) + [thePlaque setValue:[plaque ownerName] forKey:@"owner_name"]; + + [thePlaque setValue:[NSNumber numberWithDouble:[plaque locationCoords].latitude] forKey:@"latitude"]; + [thePlaque setValue:[NSNumber numberWithDouble:[plaque locationCoords].longitude] forKey:@"longitude"]; + + if(storedItems % 75 == 0) + { + //NSLog(@"Saving %d items", storedItems); + [[self managedObjectContext] save:&error]; + } + + storedItems++; + } + + //NSLog(@"Saving %d items", storedItems); + [[self managedObjectContext] save:&error]; + // [error release]; + [request release]; } - [[self managedObjectContext] save:&error]; //[toSave release]; - NSLog(@"%d plaques stored", storedItems); //NSLog(@"Setting last upload date to be %@", today); + //NSLog(@"%d plaques stored", storedItems); //NSLog(@"Setting last upload date to be %@", today); - + + NSError *dateError; NSDateFormatter *df = [[NSDateFormatter alloc] init]; - [df setDateFormat:@"yyyy-MM-dd'T'hh:mm:ss'Z'"]; + [df setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss'Z'"]; NSString *today = [df stringFromDate:[NSDate date]]; + //NSLog(@"Saving date last checked as %@", today); + [today writeToFile:[self dataFilePath] atomically:YES encoding:NSUnicodeStringEncoding error:&dateError]; [df release]; - [today writeToFile:[self dataFilePath] atomically:YES encoding:NSUnicodeStringEncoding error:&error]; NSLog(@"Data saved"); } -(void) storeData:(PlaqueVO *)plaque { -// NSLog(@"Storing plaque %@", plaque); - NSError *error; - - int plaqueId = [[plaque plaqueId] intValue]; - NSFetchRequest *request = [[NSFetchRequest alloc]init]; +// NSLog(@"Storing plaque %@", plaque); - NSEntityDescription *entityDescription = [NSEntityDescription entityForName:@"Plaque" inManagedObjectContext:[self managedObjectContext]]; - [request setEntity:entityDescription]; - NSPredicate *pred = [NSPredicate predicateWithFormat:@"(id = %d)", plaqueId]; - [request setPredicate:pred]; - - NSManagedObject *thePlaque = nil; - - NSArray *objects = [[self managedObjectContext] executeFetchRequest:request error:&error]; - - if(objects == nil) - { - NSLog(@"Got an error storing plaque %@", [plaque plaqueId]); - } - - if([objects count] > 0) - thePlaque = [objects objectAtIndex:0]; - else - thePlaque = [NSEntityDescription insertNewObjectForEntityForName:@"Plaque" inManagedObjectContext:[self managedObjectContext]]; - - [thePlaque setValue:[NSNumber numberWithInt:plaqueId] forKey:@"id"]; - [thePlaque setValue:[NSString stringWithFormat:@"%@", [plaque colour]] forKey:@"colour"]; - [thePlaque setValue:[plaque inscription] forKey:@"inscription"]; - - if([plaque organization] != nil) - [thePlaque setValue:[plaque organization] forKey:@"organisation"]; - - if([plaque location] != nil - && ![[plaque location] isKindOfClass:[NSNull class]]) - { - [thePlaque setValue:[plaque location] forKey:@"location"]; - } - - - if([plaque imgUrl] != nil) - [thePlaque setValue:[plaque imgUrl] forKey:@"image_url"]; - if([plaque ownerName] != nil) - [thePlaque setValue:[plaque ownerName] forKey:@"owner_name"]; - - [thePlaque setValue:[NSNumber numberWithDouble:[plaque locationCoords].latitude] forKey:@"latitude"]; - [thePlaque setValue:[NSNumber numberWithDouble:[plaque locationCoords].longitude] forKey:@"longitude"]; - - [request release]; //NSLog(@"Plaques Stored %@", thePlaque); } @@ -654,7 +641,7 @@ -(BOOL) userHasAllowedLocationTracking -(void) locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation { - NSLog(@"didUpdateToLocation"); + //NSLog(@"didUpdateToLocation"); locationAllowed = YES; //NSLog(@"MapViewController didUpdateToLocation"); @@ -695,16 +682,8 @@ - (void)locationManager:(CLLocationManager*)aManager didFailWithError:(NSError*) if(message != nil) { - UIAlertView *alert = [[UIAlertView alloc] - initWithTitle:@"Location Manager" - message:message - delegate:nil - cancelButtonTitle:@"Understood" - otherButtonTitles:nil]; - - [alert show]; - [alert release]; locationAllowed = NO; + [svc showLocationSwitchedOffAlert:message]; [self createMap]; } } diff --git a/Classes/SplashViewController.h b/Classes/SplashViewController.h index d1446d2..515bb5e 100644 --- a/Classes/SplashViewController.h +++ b/Classes/SplashViewController.h @@ -10,7 +10,11 @@ @interface SplashViewController : UIViewController { - + } +-(void) showLocationAlert; +-(void) showDataRetreivalFailureAlert; +-(void) showLocationSwitchedOffAlert:(NSString *) message; + @end diff --git a/Classes/SplashViewController.m b/Classes/SplashViewController.m index 0d90ca4..5fa7ed7 100644 --- a/Classes/SplashViewController.m +++ b/Classes/SplashViewController.m @@ -70,5 +70,47 @@ - (void)dealloc { [super dealloc]; } +-(void) showLocationAlert +{ + UIAlertView *alert = [[UIAlertView alloc] + initWithTitle:@"Location Manager" + message:@"This app requires location services that your device does not support. I'm really sorry." + delegate:nil + cancelButtonTitle:@"Understood" + otherButtonTitles:nil]; + + [alert show]; + [alert release]; +} + + + +-(void) showLocationSwitchedOffAlert:(NSString *) message +{ + UIAlertView *alert = [[UIAlertView alloc] + initWithTitle:@"Location Manager" + message:message + delegate:nil + cancelButtonTitle:@"Understood" + otherButtonTitles:nil]; + + [alert show]; + [alert release]; +} + +-(void) showDataRetreivalFailureAlert +{ + + UIAlertView *alert = [[UIAlertView alloc] + initWithTitle:@"Open Plaques data connection Error" + message:@"No new data could be retrieved from Open Plaques at this time." + delegate:nil + cancelButtonTitle:@"OK" + otherButtonTitles:nil]; + + [alert show]; + [alert release]; +} + @end diff --git a/OpenPlaques.xcodeproj/emily.mode1v3 b/OpenPlaques.xcodeproj/emily.mode1v3 index fd54813..cefe128 100644 --- a/OpenPlaques.xcodeproj/emily.mode1v3 +++ b/OpenPlaques.xcodeproj/emily.mode1v3 @@ -330,7 +330,7 @@ _historyCapacity 0 bookmark - A1457D391260EA3500586604 + A110BA0A1263839100B4DE8C history A1A3340C12169DE100F07720 @@ -340,18 +340,18 @@ A17BE1C212290E4F00E0564A A121BC48122D832100997BAD A121BC50122D844600997BAD - A121BC51122D844600997BAD A198BC23123D45D2005F3F4E A198C1D31242BB64005F3F4E - A177129D1244BDDD00BD46C4 A1457B8C126080E100586604 A1457B8E126080E100586604 A1457BD7126087D700586604 A1457C371260D51A00586604 A1457C741260DA0400586604 - A1457CA71260DC9100586604 - A1457CD21260DFFB00586604 - A1457CD11260DFF900586604 + A110B9A812637E6600B4DE8C + A110B9C41263802C00B4DE8C + A110B9C51263802C00B4DE8C + A110BA031263836900B4DE8C + A110BA041263836900B4DE8C SplitCount @@ -363,14 +363,14 @@ GeometryConfiguration Frame - {{0, 0}, {1170, 631}} + {{0, 0}, {1170, 623}} RubberWindowFrame 4 55 1436 823 0 0 1440 878 Module PBXNavigatorGroup Proportion - 631pt + 623pt ContentConfiguration @@ -383,14 +383,14 @@ GeometryConfiguration Frame - {{0, 636}, {1170, 146}} + {{0, 628}, {1170, 154}} RubberWindowFrame 4 55 1436 823 0 0 1440 878 Module XCDetailModule Proportion - 146pt + 154pt Proportion @@ -409,9 +409,9 @@ TableOfContents - A1457B8212607F1300586604 + A110B9AB12637E6600B4DE8C 1CE0B1FE06471DED0097A5F4 - A1457B8312607F1300586604 + A110B9AC12637E6600B4DE8C 1CE0B20306471E060097A5F4 1CE0B20506471E060097A5F4 @@ -549,10 +549,9 @@ 5 WindowOrderList - 1C530D57069F1CE1000CFCEE - A1457BA1126082DA00586604 - A1457BA4126082DC00586604 - A1457BA6126082DC00586604 + A110BA0B1263839100B4DE8C + A110B9C91263802C00B4DE8C + A110B9B512637E6600B4DE8C 1CD10A99069EF8BA00B06720 A192FB1A120DDBA0000D15AD /Users/emily/Development/iphone/OpenPlaquesV1/OpenPlaques.xcodeproj @@ -582,7 +581,7 @@ PBXProjectModuleGUID 1CD0528F0623707200166675 PBXProjectModuleLabel - MapViewController.m + SplashViewController.h StatusBarVisibility @@ -638,7 +637,7 @@ TableOfContents A192FB1A120DDBA0000D15AD - A1457B8412607F1300586604 + A110B9A112637E4700B4DE8C 1CD0528F0623707200166675 XCMainBuildResultsModuleGUID @@ -760,13 +759,13 @@ TableOfContents 1CD10A99069EF8BA00B06720 - A1457B8512607F1300586604 + A110B9AD12637E6600B4DE8C 1C162984064C10D400B95A72 - A1457B8612607F1300586604 - A1457B8712607F1300586604 - A1457B8812607F1300586604 - A1457B8912607F1300586604 - A1457B8A12607F1300586604 + A110B9AE12637E6600B4DE8C + A110B9AF12637E6600B4DE8C + A110B9B012637E6600B4DE8C + A110B9B112637E6600B4DE8C + A110B9B212637E6600B4DE8C ToolbarConfiguration xcode.toolbar.config.debugV3 @@ -793,12 +792,14 @@ Dock + BecomeActive + ContentConfiguration PBXProjectModuleGUID 1CDD528C0622207200134675 PBXProjectModuleLabel - PlaqueDetailViewController.h + OpenPlaquesAppDelegate.m StatusBarVisibility @@ -819,8 +820,6 @@ 212pt - BecomeActive - ContentConfiguration PBXProjectModuleGUID @@ -856,8 +855,8 @@ TableOfContents 1C530D57069F1CE1000CFCEE - A1457BCB1260866A00586604 - A1457BCC1260866A00586604 + A1D319E912612D4000436B49 + A1D319EA12612D4000436B49 1CDD528C0622207200134675 1CD0528E0623707200166675 @@ -866,7 +865,7 @@ WindowToolGUID 1C530D57069F1CE1000CFCEE WindowToolIsVisible - + Identifier @@ -922,7 +921,7 @@ TableOfContents 1C78EAAD065D492600B07095 - A1457B8B12607F1300586604 + A110B9B312637E6600B4DE8C 1C78EAAC065D492600B07095 ToolbarConfiguration diff --git a/OpenPlaques.xcodeproj/emily.pbxuser b/OpenPlaques.xcodeproj/emily.pbxuser index fc3a9ac..829a530 100644 --- a/OpenPlaques.xcodeproj/emily.pbxuser +++ b/OpenPlaques.xcodeproj/emily.pbxuser @@ -3,16 +3,16 @@ 1D3623240D0F684500981E51 /* OpenPlaquesAppDelegate.h */ = { uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1109, 858}}"; - sepNavSelRange = "{1830, 0}"; - sepNavVisRange = "{361, 1648}"; + sepNavSelRange = "{1726, 21}"; + sepNavVisRange = "{486, 1543}"; sepNavWindowFrame = "{{19, 91}, {1149, 782}}"; }; }; 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1109, 9464}}"; - sepNavSelRange = "{6995, 0}"; - sepNavVisRange = "{6078, 1106}"; + sepNavIntBoundsRect = "{{0, 0}, {1109, 9126}}"; + sepNavSelRange = "{6720, 0}"; + sepNavVisRange = "{6091, 1221}"; sepNavWindowFrame = "{{65, 49}, {1149, 782}}"; }; }; @@ -265,126 +265,56 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 308313787; - PBXWorkspaceStateSaveDate = 308313787; + PBXPerProjectTemplateStateSaveDate = 308509408; + PBXWorkspaceStateSaveDate = 308509408; }; perUserProjectItems = { + A110B99E12637E4700B4DE8C /* PBXTextBookmark */ = A110B99E12637E4700B4DE8C /* PBXTextBookmark */; + A110B99F12637E4700B4DE8C /* PBXTextBookmark */ = A110B99F12637E4700B4DE8C /* PBXTextBookmark */; + A110B9A012637E4700B4DE8C /* PBXTextBookmark */ = A110B9A012637E4700B4DE8C /* PBXTextBookmark */; + A110B9A612637E6600B4DE8C /* PBXTextBookmark */ = A110B9A612637E6600B4DE8C /* PBXTextBookmark */; + A110B9A712637E6600B4DE8C /* PBXTextBookmark */ = A110B9A712637E6600B4DE8C /* PBXTextBookmark */; + A110B9A812637E6600B4DE8C /* PBXTextBookmark */ = A110B9A812637E6600B4DE8C /* PBXTextBookmark */; + A110B9A912637E6600B4DE8C /* PBXTextBookmark */ = A110B9A912637E6600B4DE8C /* PBXTextBookmark */; + A110B9AA12637E6600B4DE8C /* PBXTextBookmark */ = A110B9AA12637E6600B4DE8C /* PBXTextBookmark */; + A110B9C41263802C00B4DE8C /* PBXTextBookmark */ = A110B9C41263802C00B4DE8C /* PBXTextBookmark */; + A110B9C51263802C00B4DE8C /* PBXTextBookmark */ = A110B9C51263802C00B4DE8C /* PBXTextBookmark */; + A110B9C61263802C00B4DE8C /* PBXTextBookmark */ = A110B9C61263802C00B4DE8C /* PBXTextBookmark */; + A110B9C71263802C00B4DE8C /* PBXTextBookmark */ = A110B9C71263802C00B4DE8C /* PBXTextBookmark */; + A110B9C81263802C00B4DE8C /* PBXTextBookmark */ = A110B9C81263802C00B4DE8C /* PBXTextBookmark */; + A110B9CE126380C400B4DE8C /* PBXTextBookmark */ = A110B9CE126380C400B4DE8C /* PBXTextBookmark */; + A110B9CF126380C400B4DE8C /* PBXTextBookmark */ = A110B9CF126380C400B4DE8C /* PBXTextBookmark */; + A110B9D0126380C400B4DE8C /* PBXTextBookmark */ = A110B9D0126380C400B4DE8C /* PBXTextBookmark */; + A110B9D91263810200B4DE8C /* PBXTextBookmark */ = A110B9D91263810200B4DE8C /* PBXTextBookmark */; + A110B9DE1263812E00B4DE8C /* PBXTextBookmark */ = A110B9DE1263812E00B4DE8C /* PBXTextBookmark */; + A110B9E81263817800B4DE8C /* PBXTextBookmark */ = A110B9E81263817800B4DE8C /* PBXTextBookmark */; + A110B9EF126381A500B4DE8C /* PBXTextBookmark */ = A110B9EF126381A500B4DE8C /* PBXTextBookmark */; + A110B9F5126381B700B4DE8C /* PBXTextBookmark */ = A110B9F5126381B700B4DE8C /* PBXTextBookmark */; + A110B9FE126381F700B4DE8C /* PBXTextBookmark */ = A110B9FE126381F700B4DE8C /* PBXTextBookmark */; + A110BA031263836900B4DE8C /* PBXTextBookmark */ = A110BA031263836900B4DE8C /* PBXTextBookmark */; + A110BA041263836900B4DE8C /* PBXTextBookmark */ = A110BA041263836900B4DE8C /* PBXTextBookmark */; + A110BA051263836900B4DE8C /* PBXTextBookmark */ = A110BA051263836900B4DE8C /* PBXTextBookmark */; + A110BA0A1263839100B4DE8C /* PBXTextBookmark */ = A110BA0A1263839100B4DE8C /* PBXTextBookmark */; A121BC48122D832100997BAD = A121BC48122D832100997BAD /* PBXTextBookmark */; A121BC50122D844600997BAD = A121BC50122D844600997BAD /* PBXTextBookmark */; A121BC51122D844600997BAD = A121BC51122D844600997BAD /* PBXTextBookmark */; - A13D65F7125F5DCA009E5FE2 = A13D65F7125F5DCA009E5FE2 /* PBXTextBookmark */; - A13D662F125F8347009E5FE2 = A13D662F125F8347009E5FE2 /* PBXTextBookmark */; - A13D6636125F8356009E5FE2 = A13D6636125F8356009E5FE2 /* PBXTextBookmark */; - A13D6645125F8630009E5FE2 = A13D6645125F8630009E5FE2 /* PBXTextBookmark */; - A13D6646125F8630009E5FE2 = A13D6646125F8630009E5FE2 /* PBXTextBookmark */; - A1457B7F12607F1300586604 /* PBXTextBookmark */ = A1457B7F12607F1300586604 /* PBXTextBookmark */; - A1457B8012607F1300586604 /* PBXTextBookmark */ = A1457B8012607F1300586604 /* PBXTextBookmark */; - A1457B8112607F1300586604 /* PBXTextBookmark */ = A1457B8112607F1300586604 /* PBXTextBookmark */; - A1457B8C126080E100586604 /* PBXTextBookmark */ = A1457B8C126080E100586604 /* PBXTextBookmark */; - A1457B8D126080E100586604 /* PBXTextBookmark */ = A1457B8D126080E100586604 /* PBXTextBookmark */; - A1457B8E126080E100586604 /* XDModelBookmark */ = A1457B8E126080E100586604 /* XDModelBookmark */; - A1457B8F126080E100586604 /* PBXTextBookmark */ = A1457B8F126080E100586604 /* PBXTextBookmark */; - A1457B90126080E100586604 /* PBXTextBookmark */ = A1457B90126080E100586604 /* PBXTextBookmark */; - A1457B951260829400586604 /* PBXTextBookmark */ = A1457B951260829400586604 /* PBXTextBookmark */; - A1457B9E126082D400586604 /* PBXTextBookmark */ = A1457B9E126082D400586604 /* PBXTextBookmark */; - A1457BA3126082DC00586604 /* PBXTextBookmark */ = A1457BA3126082DC00586604 /* PBXTextBookmark */; - A1457BAE1260833900586604 /* PBXTextBookmark */ = A1457BAE1260833900586604 /* PBXTextBookmark */; - A1457BB01260835F00586604 /* PBXTextBookmark */ = A1457BB01260835F00586604 /* PBXTextBookmark */; - A1457BB91260855300586604 /* PBXTextBookmark */ = A1457BB91260855300586604 /* PBXTextBookmark */; - A1457BC3126085AC00586604 /* PBXTextBookmark */ = A1457BC3126085AC00586604 /* PBXTextBookmark */; - A1457BC81260866A00586604 /* PBXTextBookmark */ = A1457BC81260866A00586604 /* PBXTextBookmark */; - A1457BC91260866A00586604 /* PBXTextBookmark */ = A1457BC91260866A00586604 /* PBXTextBookmark */; - A1457BCA1260866A00586604 /* PBXTextBookmark */ = A1457BCA1260866A00586604 /* PBXTextBookmark */; - A1457BD6126087D700586604 /* PBXTextBookmark */ = A1457BD6126087D700586604 /* PBXTextBookmark */; - A1457BD7126087D700586604 /* PBXTextBookmark */ = A1457BD7126087D700586604 /* PBXTextBookmark */; - A1457BD8126087D700586604 /* PBXTextBookmark */ = A1457BD8126087D700586604 /* PBXTextBookmark */; - A1457BD9126087D700586604 /* PBXTextBookmark */ = A1457BD9126087D700586604 /* PBXTextBookmark */; - A1457BDA126087D700586604 /* PBXTextBookmark */ = A1457BDA126087D700586604 /* PBXTextBookmark */; - A1457BDB126087D700586604 /* PBXTextBookmark */ = A1457BDB126087D700586604 /* PBXTextBookmark */; - A1457BEC12608B7A00586604 /* PBXTextBookmark */ = A1457BEC12608B7A00586604 /* PBXTextBookmark */; - A1457BED12608B7A00586604 /* PBXTextBookmark */ = A1457BED12608B7A00586604 /* PBXTextBookmark */; - A1457BEE12608B7A00586604 /* PBXTextBookmark */ = A1457BEE12608B7A00586604 /* PBXTextBookmark */; - A1457BF312608B9F00586604 /* PBXTextBookmark */ = A1457BF312608B9F00586604 /* PBXTextBookmark */; - A1457BF812608BC000586604 /* PBXTextBookmark */ = A1457BF812608BC000586604 /* PBXTextBookmark */; - A1457BF912608BC000586604 /* PBXTextBookmark */ = A1457BF912608BC000586604 /* PBXTextBookmark */; - A1457C0612608DE700586604 /* PBXTextBookmark */ = A1457C0612608DE700586604 /* PBXTextBookmark */; - A1457C0C12608E1000586604 /* PBXTextBookmark */ = A1457C0C12608E1000586604 /* PBXTextBookmark */; - A1457C131260D0F800586604 /* PBXTextBookmark */ = A1457C131260D0F800586604 /* PBXTextBookmark */; - A1457C191260D11000586604 /* PBXTextBookmark */ = A1457C191260D11000586604 /* PBXTextBookmark */; - A1457C221260D1F300586604 /* PBXTextBookmark */ = A1457C221260D1F300586604 /* PBXTextBookmark */; - A1457C2A1260D31400586604 /* PBXTextBookmark */ = A1457C2A1260D31400586604 /* PBXTextBookmark */; - A1457C2B1260D31400586604 /* PBXTextBookmark */ = A1457C2B1260D31400586604 /* PBXTextBookmark */; - A1457C2C1260D31400586604 /* PBXTextBookmark */ = A1457C2C1260D31400586604 /* PBXTextBookmark */; - A1457C2F1260D46B00586604 /* PBXTextBookmark */ = A1457C2F1260D46B00586604 /* PBXTextBookmark */; - A1457C361260D51A00586604 /* PBXTextBookmark */ = A1457C361260D51A00586604 /* PBXTextBookmark */; - A1457C371260D51A00586604 /* PBXTextBookmark */ = A1457C371260D51A00586604 /* PBXTextBookmark */; - A1457C381260D51A00586604 /* PBXTextBookmark */ = A1457C381260D51A00586604 /* PBXTextBookmark */; - A1457C3D1260D5A400586604 /* PBXTextBookmark */ = A1457C3D1260D5A400586604 /* PBXTextBookmark */; - A1457C421260D60200586604 /* PBXTextBookmark */ = A1457C421260D60200586604 /* PBXTextBookmark */; - A1457C451260D61A00586604 /* PBXTextBookmark */ = A1457C451260D61A00586604 /* PBXTextBookmark */; - A1457C471260D62400586604 /* PBXTextBookmark */ = A1457C471260D62400586604 /* PBXTextBookmark */; - A1457C481260D62400586604 /* PBXTextBookmark */ = A1457C481260D62400586604 /* PBXTextBookmark */; - A1457C491260D62400586604 /* PBXTextBookmark */ = A1457C491260D62400586604 /* PBXTextBookmark */; - A1457C561260D73200586604 /* PBXTextBookmark */ = A1457C561260D73200586604 /* PBXTextBookmark */; - A1457C571260D73200586604 /* PBXTextBookmark */ = A1457C571260D73200586604 /* PBXTextBookmark */; - A1457C621260D77800586604 /* PBXTextBookmark */ = A1457C621260D77800586604 /* PBXTextBookmark */; - A1457C681260D79C00586604 /* PBXTextBookmark */ = A1457C681260D79C00586604 /* PBXTextBookmark */; - A1457C6F1260D9EB00586604 /* XCBuildMessageTextBookmark */ = A1457C6F1260D9EB00586604 /* XCBuildMessageTextBookmark */; - A1457C701260D9EB00586604 /* PBXTextBookmark */ = A1457C701260D9EB00586604 /* PBXTextBookmark */; - A1457C711260D9EB00586604 /* PBXTextBookmark */ = A1457C711260D9EB00586604 /* PBXTextBookmark */; - A1457C741260DA0400586604 /* PBXTextBookmark */ = A1457C741260DA0400586604 /* PBXTextBookmark */; - A1457C751260DA0400586604 /* PBXTextBookmark */ = A1457C751260DA0400586604 /* PBXTextBookmark */; - A1457C761260DA0400586604 /* PBXTextBookmark */ = A1457C761260DA0400586604 /* PBXTextBookmark */; - A1457C771260DA0400586604 /* XCBuildMessageTextBookmark */ = A1457C771260DA0400586604 /* XCBuildMessageTextBookmark */; - A1457C781260DA0400586604 /* PBXTextBookmark */ = A1457C781260DA0400586604 /* PBXTextBookmark */; - A1457C801260DA5200586604 /* PBXTextBookmark */ = A1457C801260DA5200586604 /* PBXTextBookmark */; - A1457C811260DA5200586604 /* PBXTextBookmark */ = A1457C811260DA5200586604 /* PBXTextBookmark */; - A1457C931260DB4300586604 /* PBXTextBookmark */ = A1457C931260DB4300586604 /* PBXTextBookmark */; - A1457C941260DB4300586604 /* PBXTextBookmark */ = A1457C941260DB4300586604 /* PBXTextBookmark */; - A1457C951260DB4300586604 /* PBXTextBookmark */ = A1457C951260DB4300586604 /* PBXTextBookmark */; - A1457C991260DB9A00586604 /* PBXTextBookmark */ = A1457C991260DB9A00586604 /* PBXTextBookmark */; - A1457C9A1260DB9A00586604 /* PBXTextBookmark */ = A1457C9A1260DB9A00586604 /* PBXTextBookmark */; - A1457C9B1260DB9A00586604 /* PBXTextBookmark */ = A1457C9B1260DB9A00586604 /* PBXTextBookmark */; - A1457CA71260DC9100586604 /* PBXTextBookmark */ = A1457CA71260DC9100586604 /* PBXTextBookmark */; - A1457CA81260DC9100586604 /* PBXTextBookmark */ = A1457CA81260DC9100586604 /* PBXTextBookmark */; - A1457CA91260DC9100586604 /* PBXTextBookmark */ = A1457CA91260DC9100586604 /* PBXTextBookmark */; - A1457CC01260DEB300586604 /* PBXTextBookmark */ = A1457CC01260DEB300586604 /* PBXTextBookmark */; - A1457CC71260DEEB00586604 /* PBXTextBookmark */ = A1457CC71260DEEB00586604 /* PBXTextBookmark */; - A1457CCE1260DFEA00586604 /* PBXTextBookmark */ = A1457CCE1260DFEA00586604 /* PBXTextBookmark */; - A1457CCF1260DFEA00586604 /* PBXTextBookmark */ = A1457CCF1260DFEA00586604 /* PBXTextBookmark */; - A1457CD11260DFF900586604 /* PBXTextBookmark */ = A1457CD11260DFF900586604 /* PBXTextBookmark */; - A1457CD21260DFFB00586604 /* PBXTextBookmark */ = A1457CD21260DFFB00586604 /* PBXTextBookmark */; - A1457CD31260DFFB00586604 /* PBXTextBookmark */ = A1457CD31260DFFB00586604 /* PBXTextBookmark */; - A1457CD41260DFFB00586604 /* PBXTextBookmark */ = A1457CD41260DFFB00586604 /* PBXTextBookmark */; - A1457CE21260E05600586604 /* PBXTextBookmark */ = A1457CE21260E05600586604 /* PBXTextBookmark */; - A1457CE81260E06800586604 /* PBXTextBookmark */ = A1457CE81260E06800586604 /* PBXTextBookmark */; - A1457CE91260E06800586604 /* PBXTextBookmark */ = A1457CE91260E06800586604 /* PBXTextBookmark */; - A1457CEF1260E0A900586604 /* PBXTextBookmark */ = A1457CEF1260E0A900586604 /* PBXTextBookmark */; - A1457CF51260E0F200586604 /* PBXTextBookmark */ = A1457CF51260E0F200586604 /* PBXTextBookmark */; - A1457CF91260E11400586604 /* PBXTextBookmark */ = A1457CF91260E11400586604 /* PBXTextBookmark */; - A1457CFA1260E17000586604 /* PBXTextBookmark */ = A1457CFA1260E17000586604 /* PBXTextBookmark */; - A1457CFF1260E2AD00586604 /* PBXTextBookmark */ = A1457CFF1260E2AD00586604 /* PBXTextBookmark */; - A1457D0A1260E3A800586604 /* PBXTextBookmark */ = A1457D0A1260E3A800586604 /* PBXTextBookmark */; - A1457D0F1260E3F700586604 /* PBXTextBookmark */ = A1457D0F1260E3F700586604 /* PBXTextBookmark */; - A1457D151260E42F00586604 /* PBXTextBookmark */ = A1457D151260E42F00586604 /* PBXTextBookmark */; - A1457D1B1260E48A00586604 /* PBXTextBookmark */ = A1457D1B1260E48A00586604 /* PBXTextBookmark */; - A1457D211260E4BD00586604 /* PBXTextBookmark */ = A1457D211260E4BD00586604 /* PBXTextBookmark */; - A1457D2B1260E6A100586604 /* PBXTextBookmark */ = A1457D2B1260E6A100586604 /* PBXTextBookmark */; - A1457D301260E7A800586604 /* PBXTextBookmark */ = A1457D301260E7A800586604 /* PBXTextBookmark */; - A1457D331260E86800586604 /* PBXTextBookmark */ = A1457D331260E86800586604 /* PBXTextBookmark */; - A1457D361260E8E000586604 /* PBXTextBookmark */ = A1457D361260E8E000586604 /* PBXTextBookmark */; - A1457D391260EA3500586604 /* PBXTextBookmark */ = A1457D391260EA3500586604 /* PBXTextBookmark */; - A14EB3EA124413790081E81C = A14EB3EA124413790081E81C /* PBXTextBookmark */; - A17712841244BC1A00BD46C4 = A17712841244BC1A00BD46C4 /* PBXTextBookmark */; + A1457B8C126080E100586604 = A1457B8C126080E100586604 /* PBXTextBookmark */; + A1457B8E126080E100586604 = A1457B8E126080E100586604 /* XDModelBookmark */; + A1457BD7126087D700586604 = A1457BD7126087D700586604 /* PBXTextBookmark */; + A1457C371260D51A00586604 = A1457C371260D51A00586604 /* PBXTextBookmark */; + A1457C741260DA0400586604 = A1457C741260DA0400586604 /* PBXTextBookmark */; + A1457E041261246F00586604 = A1457E041261246F00586604 /* PBXTextBookmark */; A177129D1244BDDD00BD46C4 = A177129D1244BDDD00BD46C4 /* PBXTextBookmark */; A17BDF671226ABA800E0564A = A17BDF671226ABA800E0564A /* PBXTextBookmark */; A17BE0C91227E13800E0564A = A17BE0C91227E13800E0564A /* PBXTextBookmark */; A17BE1C212290E4F00E0564A = A17BE1C212290E4F00E0564A /* PBXTextBookmark */; A198BC23123D45D2005F3F4E = A198BC23123D45D2005F3F4E /* PBXTextBookmark */; A198C1D31242BB64005F3F4E = A198C1D31242BB64005F3F4E /* PBXTextBookmark */; - A198C1D41242BB64005F3F4E = A198C1D41242BB64005F3F4E /* PBXTextBookmark */; A1A3340C12169DE100F07720 = A1A3340C12169DE100F07720 /* PBXTextBookmark */; A1A334C6121AF8D500F07720 = A1A334C6121AF8D500F07720 /* PBXTextBookmark */; + A1D319FF12612DCB00436B49 = A1D319FF12612DCB00436B49 /* PBXTextBookmark */; + A1D31A571261D70C00436B49 = A1D31A571261D70C00436B49 /* PBXTextBookmark */; + A1D31A601262FE8500436B49 = A1D31A601262FE8500436B49 /* PBXTextBookmark */; }; sourceControlManager = A192FB0A120DDB52000D15AD /* Source Control */; userBuildSettings = { @@ -410,1228 +340,368 @@ sepNavWindowFrame = "{{19, 91}, {1149, 782}}"; }; }; - A121BC48122D832100997BAD /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0F120DDB73000D15AD /* PlaqueAnnotation.m */; - name = "PlaqueAnnotation.m: 20"; - rLen = 6; - rLoc = 353; - rType = 0; - vrLen = 397; - vrLoc = 0; - }; - A121BC50122D844600997BAD /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB10120DDB73000D15AD /* PlaqueVO.h */; - name = "PlaqueVO.h: 27"; - rLen = 0; - rLoc = 486; - rType = 0; - vrLen = 1073; - vrLoc = 0; - }; - A121BC51122D844600997BAD /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A1C229CB122586B6006E7929 /* SplashViewController.h */; - name = "SplashViewController.h: 1"; - rLen = 0; - rLoc = 0; - rType = 0; - vrLen = 237; - vrLoc = 0; - }; - A134342112201AD100680410 /* PlaqueViewController.m:72 */ = { - isa = PBXFileBreakpoint; - actions = ( - ); - breakpointStyle = 0; - continueAfterActions = 0; - countType = 0; - delayBeforeContinue = 0; - fileReference = A1A334E4121B01A100F07720 /* PlaqueViewController.m */; - functionName = "-viewDidLoad"; - hitCount = 0; - ignoreCount = 0; - lineNumber = 72; - location = OpenPlaques; - modificationTime = 308339944.369767; - originalNumberOfMultipleMatches = 1; - state = 2; - }; - A13D65F7125F5DCA009E5FE2 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0C120DDB73000D15AD /* MapViewController.h */; - name = "MapViewController.h: 18"; - rLen = 0; - rLoc = 388; - rType = 0; - vrLen = 465; - vrLoc = 0; - }; - A13D662F125F8347009E5FE2 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 27"; - rLen = 0; - rLoc = 527; - rType = 0; - vrLen = 1482; - vrLoc = 1663; - }; - A13D6636125F8356009E5FE2 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623240D0F684500981E51 /* OpenPlaquesAppDelegate.h */; - name = "OpenPlaquesAppDelegate.h: 63"; - rLen = 0; - rLoc = 1971; - rType = 0; - vrLen = 1587; - vrLoc = 459; - }; - A13D6645125F8630009E5FE2 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 270"; - rLen = 0; - rLoc = 7768; - rType = 0; - vrLen = 1441; - vrLoc = 7086; - }; - A13D6646125F8630009E5FE2 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 270"; - rLen = 0; - rLoc = 7768; - rType = 0; - vrLen = 1455; - vrLoc = 7086; - }; - A1457B7F12607F1300586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623240D0F684500981E51 /* OpenPlaquesAppDelegate.h */; - name = "OpenPlaquesAppDelegate.h: 63"; - rLen = 0; - rLoc = 1971; - rType = 0; - vrLen = 1685; - vrLoc = 361; - }; - A1457B8012607F1300586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 270"; - rLen = 0; - rLoc = 7768; - rType = 0; - vrLen = 1455; - vrLoc = 7086; - }; - A1457B8112607F1300586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 414"; - rLen = 0; - rLoc = 12390; - rType = 0; - vrLen = 1547; - vrLoc = 10845; - }; - A1457B8C126080E100586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB11120DDB73000D15AD /* PlaqueVO.m */; - name = "PlaqueVO.m: 53"; - rLen = 849; - rLoc = 1187; - rType = 0; - vrLen = 1632; - vrLoc = 440; - }; - A1457B8D126080E100586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623240D0F684500981E51 /* OpenPlaquesAppDelegate.h */; - name = "OpenPlaquesAppDelegate.h: 63"; - rLen = 0; - rLoc = 1971; - rType = 0; - vrLen = 1686; - vrLoc = 360; - }; - A1457B8E126080E100586604 /* XDModelBookmark */ = { - isa = XDModelBookmark; - fRef = 28C3AD890F43EF2300507BA6 /* OpenPlaques.xcdatamodel */; - fallbackIsa = PBXBookmark; - uiCtxt = { - UIContextForDetailArea = { - _indexOfSelectedPane = 0; - _indexOfSelectedView = 1; - }; - UIContextForEntityArea = { - _indexOfSelectedView = 0; - chosenTableColumnns = ( - "ET Entity", - "ET Abstract", - "ET Class", - ); - chosenTableColumnns_sortDirections = ( - YES, - ); - chosenTableColumnns_sortKeys = ( - name, - ); - chosenTableColumnns_sortSelectors = ( - "_xdcaseInsensitiveNumericCompare:", - ); - chosenTableWidths = ( - 103.000000, - 22.000000, - 100.080078, - ); - }; - UIContextForLayoutManager = { - detailSplitGeometry = { - _collapsingFrameDimension = 0; - _indexOfCollapsedView = 0; - _percentageOfCollapsedView = 0; - isCollapsed = yes; - sizes = ( - "{{0, 0}, {762, 220}}", - "{{767, 0}, {401, 220}}", - ); - }; - diagramSplitGeometry = { - _collapsingFrameDimension = 0; - _indexOfCollapsedView = 0; - _percentageOfCollapsedView = 0; - isCollapsed = yes; - sizes = ( - "{{0, 0}, {1168, 220}}", - "{{0, 225}, {1168, 389}}", - ); - }; - tableSplitGeometry = { - _collapsingFrameDimension = 0; - _indexOfCollapsedView = 0; - _percentageOfCollapsedView = 0; - isCollapsed = yes; - sizes = ( - "{{0, 0}, {250, 220}}", - "{{255, 0}, {507, 220}}", - ); - }; - }; - UIContextForPropertyArea = { - _indexOfSelectedView = 0; - chosenTableColumnnFRTs = ( - "FT Fetch Request", - "FT Predicate", - ); - chosenTableColumnnFRTs_sortDirections = ( - YES, - ); - chosenTableColumnnFRTs_sortKeys = ( - name, - ); - chosenTableColumnnFRTs_sortSelectors = ( - "_xdcaseInsensitiveNumericCompare:", - ); - chosenTableColumnnsAT = ( - "AT Attribute", - "AT Type", - ); - chosenTableColumnnsAT_sortDirections = ( - YES, - ); - chosenTableColumnnsAT_sortKeys = ( - name, - ); - chosenTableColumnnsAT_sortSelectors = ( - "_xdcaseInsensitiveNumericCompare:", - ); - chosenTableColumnnsFPT = ( - "FP FetchedProperty", - "FP Destination", - "FP Predicate", - ); - chosenTableColumnnsFPT_sortDirections = ( - YES, - ); - chosenTableColumnnsFPT_sortKeys = ( - name, - ); - chosenTableColumnnsFPT_sortSelectors = ( - "_xdcaseInsensitiveNumericCompare:", - ); - chosenTableColumnnsPT = ( - "PT Property", - "PT Kind", - "PT SharedKeyOne", - ); - chosenTableColumnnsPT_sortDirections = ( - YES, - ); - chosenTableColumnnsPT_sortKeys = ( - name, - ); - chosenTableColumnnsPT_sortSelectors = ( - "_xdcaseInsensitiveNumericCompare:", - ); - chosenTableColumnnsRT = ( - "RT Relationship", - "RT Destination", - ); - chosenTableColumnnsRT_sortDirections = ( - YES, - ); - chosenTableColumnnsRT_sortKeys = ( - name, - ); - chosenTableColumnnsRT_sortSelectors = ( - "_xdcaseInsensitiveNumericCompare:", - ); - chosenTableWidthsAT = ( - 128.000000, - 64.000000, - ); - chosenTableWidthsFPT = ( - 128.000000, - 64.000000, - 144.764160, - ); - chosenTableWidthsFRT = ( - 128.000000, - 249.764160, - ); - chosenTableWidthsPT = ( - 128.000000, - 108.110840, - 244.570801, - ); - chosenTableWidthsRT = ( - 128.000000, - 64.000000, - ); - }; - "xdesign model browser state key - shown/hidden" = 1; - "xdesign model diagram view visible rect key" = "{{-228, 41}, {1153, 374}}"; - "xdesign model selected entities key" = ( - "{name=Plaque, package=}", - ); - "xdesign model selected properties key" = ( - "{name=longitude, type=(null)}", - ); - }; - }; - A1457B8F126080E100586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 389"; - rLen = 0; - rLoc = 11529; - rType = 0; - vrLen = 1878; - vrLoc = 10645; - }; - A1457B90126080E100586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 448"; - rLen = 0; - rLoc = 13602; - rType = 0; - vrLen = 2011; - vrLoc = 10632; - }; - A1457B951260829400586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 434"; - rLen = 0; - rLoc = 12941; - rType = 0; - vrLen = 1634; - vrLoc = 12802; - }; - A1457B9E126082D400586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - rLen = 1; - rLoc = 392; - rType = 1; - }; - A1457BA3126082DC00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 377"; - rLen = 113; - rLoc = 10941; - rType = 0; - vrLen = 1918; - vrLoc = 10198; - }; - A1457BAE1260833900586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 376"; - rLen = 0; - rLoc = 10940; - rType = 0; - vrLen = 1836; - vrLoc = 10706; - }; - A1457BB01260835F00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 376"; - rLen = 0; - rLoc = 10940; - rType = 0; - vrLen = 1374; - vrLoc = 20334; - }; - A1457BB91260855300586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 435"; - rLen = 0; - rLoc = 13079; - rType = 0; - vrLen = 1711; - vrLoc = 12543; - }; - A1457BC3126085AC00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 435"; - rLen = 0; - rLoc = 13031; - rType = 0; - vrLen = 1639; - vrLoc = 12485; - }; - A1457BC81260866A00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A17BE0A41227DF4F00E0564A /* PlaqueDetailViewController.m */; - name = "PlaqueDetailViewController.m: 341"; - rLen = 0; - rLoc = 12234; - rType = 0; - vrLen = 352; - vrLoc = 12085; - }; - A1457BC91260866A00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A17BE0A31227DF4F00E0564A /* PlaqueDetailViewController.h */; - rLen = 0; - rLoc = 1251; - rType = 0; - }; - A1457BCA1260866A00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A17BE0A31227DF4F00E0564A /* PlaqueDetailViewController.h */; - name = "PlaqueDetailViewController.h: 43"; - rLen = 0; - rLoc = 1251; - rType = 0; - vrLen = 524; - vrLoc = 758; - }; - A1457BD6126087D700586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 153"; - rLen = 0; - rLoc = 4059; - rType = 0; - vrLen = 1358; - vrLoc = 2876; - }; - A1457BD7126087D700586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A17BE0A31227DF4F00E0564A /* PlaqueDetailViewController.h */; - name = "PlaqueDetailViewController.h: 42"; - rLen = 0; - rLoc = 1251; - rType = 0; - vrLen = 1258; - vrLoc = 0; - }; - A1457BD8126087D700586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A17BE0A41227DF4F00E0564A /* PlaqueDetailViewController.m */; - name = "PlaqueDetailViewController.m: 338"; - rLen = 0; - rLoc = 12234; - rType = 0; - vrLen = 1162; - vrLoc = 11445; - }; - A1457BD9126087D700586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623240D0F684500981E51 /* OpenPlaquesAppDelegate.h */; - name = "OpenPlaquesAppDelegate.h: 59"; - rLen = 0; - rLoc = 1830; - rType = 0; - vrLen = 1649; - vrLoc = 360; - }; - A1457BDA126087D700586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 486"; - rLen = 0; - rLoc = 15140; - rType = 0; - vrLen = 1808; - vrLoc = 14910; - }; - A1457BDB126087D700586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 410"; - rLen = 0; - rLoc = 12384; - rType = 0; - vrLen = 1707; - vrLoc = 11513; - }; - A1457BEC12608B7A00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 27"; - rLen = 0; - rLoc = 527; - rType = 0; - vrLen = 1103; - vrLoc = 0; - }; - A1457BED12608B7A00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - rLen = 0; - rLoc = 288; - rType = 1; - }; - A1457BEE12608B7A00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 273"; - rLen = 0; - rLoc = 7835; - rType = 0; - vrLen = 1273; - vrLoc = 7062; - }; - A1457BF312608B9F00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - rLen = 1; - rLoc = 284; - rType = 1; - }; - A1457BF812608BC000586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 274"; - rLen = 0; - rLoc = 7838; - rType = 0; - vrLen = 1341; - vrLoc = 7062; - }; - A1457BF912608BC000586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 262"; - rLen = 0; - rLoc = 7553; - rType = 0; - vrLen = 1287; - vrLoc = 7062; - }; - A1457C0612608DE700586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 249"; - rLen = 0; - rLoc = 6842; - rType = 0; - vrLen = 1108; - vrLoc = 6855; - }; - A1457C0C12608E1000586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 259"; - rLen = 0; - rLoc = 7158; - rType = 0; - vrLen = 1104; - vrLoc = 6855; - }; - A1457C131260D0F800586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 260"; - rLen = 0; - rLoc = 7146; - rType = 0; - vrLen = 1144; - vrLoc = 6855; - }; - A1457C191260D11000586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 266"; - rLen = 0; - rLoc = 7516; - rType = 0; - vrLen = 1243; - vrLoc = 7058; - }; - A1457C221260D1F300586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 424"; - rLen = 0; - rLoc = 12738; - rType = 0; - vrLen = 1723; - vrLoc = 12354; - }; - A1457C2A1260D31400586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 416"; - rLen = 0; - rLoc = 12511; - rType = 0; - vrLen = 1795; - vrLoc = 12143; - }; - A1457C2B1260D31400586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 27"; - rLen = 0; - rLoc = 527; - rType = 0; - vrLen = 1162; - vrLoc = 0; - }; - A1457C2C1260D31400586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 147"; - rLen = 0; - rLoc = 4020; - rType = 0; - vrLen = 1204; - vrLoc = 3067; - }; - A1457C2F1260D46B00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A17BE0A31227DF4F00E0564A /* PlaqueDetailViewController.h */; - name = "PlaqueDetailViewController.h: 42"; - rLen = 0; - rLoc = 1251; - rType = 0; - vrLen = 500; - vrLoc = 758; - }; - A1457C361260D51A00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 147"; - rLen = 0; - rLoc = 4020; - rType = 0; - vrLen = 1204; - vrLoc = 3067; - }; - A1457C371260D51A00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A17BE0A41227DF4F00E0564A /* PlaqueDetailViewController.m */; - name = "PlaqueDetailViewController.m: 352"; - rLen = 0; - rLoc = 12682; - rType = 0; - vrLen = 1472; - vrLoc = 10369; - }; - A1457C381260D51A00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 417"; - rLen = 0; - rLoc = 12560; - rType = 0; - vrLen = 1848; - vrLoc = 12033; - }; - A1457C3D1260D5A400586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 418"; - rLen = 0; - rLoc = 12577; - rType = 0; - vrLen = 1623; - vrLoc = 13217; - }; - A1457C421260D60200586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A17BE0A31227DF4F00E0564A /* PlaqueDetailViewController.h */; - name = "PlaqueDetailViewController.h: 42"; - rLen = 0; - rLoc = 1251; - rType = 0; - vrLen = 500; - vrLoc = 758; - }; - A1457C451260D61A00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 276"; - rLen = 23; - rLoc = 7783; - rType = 0; - vrLen = 1245; - vrLoc = 7059; - }; - A1457C471260D62400586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 276"; - rLen = 23; - rLoc = 7783; - rType = 0; - vrLen = 1245; - vrLoc = 7059; - }; - A1457C481260D62400586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - rLen = 0; - rLoc = 26; - rType = 1; - }; - A1457C491260D62400586604 /* PBXTextBookmark */ = { + A110B99E12637E4700B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 27"; + fRef = A1C229CC122586B6006E7929 /* SplashViewController.m */; + name = "SplashViewController.m: 88"; rLen = 0; - rLoc = 527; + rLoc = 2268; rType = 0; - vrLen = 1103; - vrLoc = 0; + vrLen = 729; + vrLoc = 1846; }; - A1457C561260D73200586604 /* PBXTextBookmark */ = { + A110B99F12637E4700B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 27"; + fRef = A1C229CB122586B6006E7929 /* SplashViewController.h */; + name = "SplashViewController.h: 18"; rLen = 0; - rLoc = 527; + rLoc = 357; rType = 0; - vrLen = 1162; + vrLen = 343; vrLoc = 0; }; - A1457C571260D73200586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 162"; - rLen = 0; - rLoc = 4020; - rType = 0; - vrLen = 1066; - vrLoc = 3251; - }; - A1457C621260D77800586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 148"; - rLen = 0; - rLoc = 3873; - rType = 0; - vrLen = 1086; - vrLoc = 3251; - }; - A1457C681260D79C00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 141"; - rLen = 0; - rLoc = 3577; - rType = 0; - vrLen = 1087; - vrLoc = 3251; - }; - A1457C6F1260D9EB00586604 /* XCBuildMessageTextBookmark */ = { - isa = PBXTextBookmark; - comments = "'MapViewController' may not respond to '-addAnnotations:'"; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - fallbackIsa = XCBuildMessageTextBookmark; - rLen = 1; - rLoc = 54; - rType = 1; - }; - A1457C701260D9EB00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 55"; - rLen = 0; - rLoc = 1319; - rType = 0; - vrLen = 781; - vrLoc = 884; - }; - A1457C711260D9EB00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A17BE0A31227DF4F00E0564A /* PlaqueDetailViewController.h */; - name = "PlaqueDetailViewController.h: 42"; - rLen = 0; - rLoc = 1251; - rType = 0; - vrLen = 500; - vrLoc = 758; - }; - A1457C741260DA0400586604 /* PBXTextBookmark */ = { + A110B9A012637E4700B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = A192FB0C120DDB73000D15AD /* MapViewController.h */; - name = "MapViewController.h: 23"; + fRef = A1C229CB122586B6006E7929 /* SplashViewController.h */; + name = "SplashViewController.h: 18"; rLen = 0; - rLoc = 474; + rLoc = 356; rType = 0; - vrLen = 482; + vrLen = 364; vrLoc = 0; }; - A1457C751260DA0400586604 /* PBXTextBookmark */ = { + A110B9A612637E6600B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623240D0F684500981E51 /* OpenPlaquesAppDelegate.h */; - name = "OpenPlaquesAppDelegate.h: 59"; - rLen = 0; - rLoc = 1830; - rType = 0; - vrLen = 1678; - vrLoc = 331; - }; - A1457C761260DA0400586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 342"; - rLen = 0; - rLoc = 9937; - rType = 0; - vrLen = 1356; - vrLoc = 8906; - }; - A1457C771260DA0400586604 /* XCBuildMessageTextBookmark */ = { - isa = PBXTextBookmark; - comments = "'MapViewController' may not respond to '-addAnnotations:'"; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - fallbackIsa = XCBuildMessageTextBookmark; - rLen = 1; - rLoc = 54; - rType = 1; - }; - A1457C781260DA0400586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 153"; - rLen = 0; - rLoc = 4020; + name = "OpenPlaquesAppDelegate.h: 33"; + rLen = 15; + rLoc = 783; rType = 0; - vrLen = 1088; - vrLoc = 3234; + vrLen = 1648; + vrLoc = 360; }; - A1457C801260DA5200586604 /* PBXTextBookmark */ = { + A110B9A712637E6600B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 153"; - rLen = 0; - rLoc = 4020; + fRef = A1C229CC122586B6006E7929 /* SplashViewController.m */; + name = "SplashViewController.m: 88"; + rLen = 36; + rLoc = 2231; rType = 0; - vrLen = 1088; - vrLoc = 3234; + vrLen = 1069; + vrLoc = 1485; }; - A1457C811260DA5200586604 /* PBXTextBookmark */ = { + A110B9A812637E6600B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 153"; + fRef = A1C229CB122586B6006E7929 /* SplashViewController.h */; + name = "SplashViewController.h: 20"; rLen = 0; - rLoc = 4020; + rLoc = 359; rType = 0; - vrLen = 1103; + vrLen = 364; vrLoc = 0; }; - A1457C931260DB4300586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 131"; - rLen = 20; - rLoc = 3375; - rType = 0; - vrLen = 1199; - vrLoc = 2840; - }; - A1457C941260DB4300586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 342"; - rLen = 0; - rLoc = 9879; - rType = 0; - vrLen = 1300; - vrLoc = 9049; - }; - A1457C951260DB4300586604 /* PBXTextBookmark */ = { + A110B9A912637E6600B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 627"; + name = "OpenPlaquesAppDelegate.m: 688"; rLen = 0; - rLoc = 19518; + rLoc = 21179; rType = 0; - vrLen = 1531; - vrLoc = 18819; + vrLen = 1359; + vrLoc = 19873; }; - A1457C991260DB9A00586604 /* PBXTextBookmark */ = { + A110B9AA12637E6600B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 627"; + name = "OpenPlaquesAppDelegate.m: 688"; rLen = 0; - rLoc = 19518; + rLoc = 21177; rType = 0; - vrLen = 1997; - vrLoc = 10887; + vrLen = 1366; + vrLoc = 19871; }; - A1457C9A1260DB9A00586604 /* PBXTextBookmark */ = { + A110B9C41263802C00B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 131"; - rLen = 20; - rLoc = 3375; - rType = 0; - vrLen = 1157; - vrLoc = 2840; - }; - A1457C9B1260DB9A00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 137"; - rLen = 0; - rLoc = 3521; + fRef = A1C229CC122586B6006E7929 /* SplashViewController.m */; + name = "SplashViewController.m: 30"; + rLen = 426; + rLoc = 759; rType = 0; - vrLen = 1276; - vrLoc = 3050; + vrLen = 1219; + vrLoc = 608; }; - A1457CA71260DC9100586604 /* PBXTextBookmark */ = { + A110B9C51263802C00B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; - name = "MapViewController.m: 130"; - rLen = 14; - rLoc = 3359; - rType = 0; - vrLen = 1276; - vrLoc = 3050; - }; - A1457CA81260DC9100586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 627"; - rLen = 0; - rLoc = 19518; - rType = 0; - vrLen = 2074; - vrLoc = 10886; - }; - A1457CA91260DC9100586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 541"; + name = "MapViewController.m: 133"; rLen = 0; - rLoc = 17057; + rLoc = 3426; rType = 0; - vrLen = 1341; - vrLoc = 16521; + vrLen = 1231; + vrLoc = 3263; }; - A1457CC01260DEB300586604 /* PBXTextBookmark */ = { + A110B9C61263802C00B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 648"; - rLen = 0; - rLoc = 20424; + fRef = 1D3623240D0F684500981E51 /* OpenPlaquesAppDelegate.h */; + name = "OpenPlaquesAppDelegate.h: 33"; + rLen = 15; + rLoc = 783; rType = 0; - vrLen = 1334; - vrLoc = 20389; + vrLen = 1648; + vrLoc = 360; }; - A1457CC71260DEEB00586604 /* PBXTextBookmark */ = { + A110B9C71263802C00B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 560"; + name = "OpenPlaquesAppDelegate.m: 688"; rLen = 0; - rLoc = 17612; + rLoc = 21177; rType = 0; - vrLen = 1424; - vrLoc = 16458; + vrLen = 1327; + vrLoc = 17523; }; - A1457CCE1260DFEA00586604 /* PBXTextBookmark */ = { + A110B9C81263802C00B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 536"; - rLen = 0; - rLoc = 16914; - rType = 0; - vrLen = 1439; - vrLoc = 15479; - }; - A1457CCF1260DFEA00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623240D0F684500981E51 /* OpenPlaquesAppDelegate.h */; - name = "OpenPlaquesAppDelegate.h: 59"; + name = "OpenPlaquesAppDelegate.m: 598"; rLen = 0; - rLoc = 1830; + rLoc = 18579; rType = 0; - vrLen = 1648; - vrLoc = 361; - }; - A1457CD11260DFF900586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - rLen = 1; - rLoc = 532; - rType = 1; + vrLen = 1358; + vrLoc = 17591; }; - A1457CD21260DFFB00586604 /* PBXTextBookmark */ = { + A110B9CE126380C400B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623240D0F684500981E51 /* OpenPlaquesAppDelegate.h */; - name = "OpenPlaquesAppDelegate.h: 59"; - rLen = 0; - rLoc = 1830; - rType = 0; - vrLen = 1648; - vrLoc = 361; - }; - A1457CD31260DFFB00586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 536"; - rLen = 0; - rLoc = 16914; + name = "OpenPlaquesAppDelegate.h: 55"; + rLen = 21; + rLoc = 1726; rType = 0; - vrLen = 1439; - vrLoc = 15479; + vrLen = 1669; + vrLoc = 360; }; - A1457CD41260DFFB00586604 /* PBXTextBookmark */ = { + A110B9CF126380C400B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 536"; + name = "OpenPlaquesAppDelegate.m: 598"; rLen = 0; - rLoc = 16914; + rLoc = 18579; rType = 0; - vrLen = 1439; - vrLoc = 15479; + vrLen = 1616; + vrLoc = 16948; }; - A1457CE21260E05600586604 /* PBXTextBookmark */ = { + A110B9D0126380C400B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 548"; + name = "OpenPlaquesAppDelegate.m: 217"; rLen = 0; - rLoc = 17190; + rLoc = 6029; rType = 0; - vrLen = 1390; - vrLoc = 15884; + vrLen = 1105; + vrLoc = 5316; }; - A1457CE81260E06800586604 /* PBXTextBookmark */ = { + A110B9D91263810200B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 548"; + name = "OpenPlaquesAppDelegate.m: 266"; rLen = 0; - rLoc = 17190; + rLoc = 7429; rType = 0; - vrLen = 1321; - vrLoc = 15884; + vrLen = 1146; + vrLoc = 6350; }; - A1457CE91260E06800586604 /* PBXTextBookmark */ = { + A110B9DE1263812E00B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 548"; + name = "OpenPlaquesAppDelegate.m: 268"; rLen = 0; - rLoc = 17190; + rLoc = 6682; rType = 0; - vrLen = 1321; - vrLoc = 15884; + vrLen = 1094; + vrLoc = 6374; }; - A1457CEF1260E0A900586604 /* PBXTextBookmark */ = { + A110B9E81263817800B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 522"; + name = "OpenPlaquesAppDelegate.m: 248"; rLen = 0; - rLoc = 16510; + rLoc = 6682; rType = 0; - vrLen = 1399; - vrLoc = 15884; + vrLen = 1164; + vrLoc = 6374; }; - A1457CF51260E0F200586604 /* PBXTextBookmark */ = { + A110B9EF126381A500B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 536"; + name = "OpenPlaquesAppDelegate.m: 259"; rLen = 0; - rLoc = 16914; + rLoc = 7385; rType = 0; - vrLen = 1392; - vrLoc = 15884; + vrLen = 1083; + vrLoc = 6308; }; - A1457CF91260E11400586604 /* PBXTextBookmark */ = { + A110B9F5126381B700B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 522"; + name = "OpenPlaquesAppDelegate.m: 261"; rLen = 0; - rLoc = 16510; + rLoc = 7429; rType = 0; - vrLen = 1390; - vrLoc = 15884; + vrLen = 1085; + vrLoc = 6308; }; - A1457CFA1260E17000586604 /* PBXTextBookmark */ = { + A110B9FE126381F700B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 536"; + name = "OpenPlaquesAppDelegate.m: 347"; rLen = 0; - rLoc = 16914; + rLoc = 10013; rType = 0; - vrLen = 1384; - vrLoc = 15884; + vrLen = 1243; + vrLoc = 8514; }; - A1457CFF1260E2AD00586604 /* PBXTextBookmark */ = { + A110BA031263836900B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 385"; + fRef = 1D3623240D0F684500981E51 /* OpenPlaquesAppDelegate.h */; + name = "OpenPlaquesAppDelegate.h: 55"; rLen = 21; - rLoc = 10844; + rLoc = 1726; rType = 0; - vrLen = 1916; - vrLoc = 9985; + vrLen = 1543; + vrLoc = 486; }; - A1457D0A1260E3A800586604 /* PBXTextBookmark */ = { + A110BA041263836900B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 448"; + name = "OpenPlaquesAppDelegate.m: 417"; rLen = 0; - rLoc = 13634; + rLoc = 12413; rType = 0; - vrLen = 1888; - vrLoc = 12800; + vrLen = 1988; + vrLoc = 11007; }; - A1457D0F1260E3F700586604 /* PBXTextBookmark */ = { + A110BA051263836900B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 541"; + name = "OpenPlaquesAppDelegate.m: 253"; rLen = 0; - rLoc = 17089; + rLoc = 6986; rType = 0; - vrLen = 1422; - vrLoc = 15648; + vrLen = 1270; + vrLoc = 6068; }; - A1457D151260E42F00586604 /* PBXTextBookmark */ = { + A110BA0A1263839100B4DE8C /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 541"; + name = "OpenPlaquesAppDelegate.m: 249"; rLen = 0; - rLoc = 17089; + rLoc = 6720; rType = 0; - vrLen = 1269; - vrLoc = 16100; + vrLen = 1221; + vrLoc = 6091; }; - A1457D1B1260E48A00586604 /* PBXTextBookmark */ = { + A121BC48122D832100997BAD /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 525"; - rLen = 0; - rLoc = 16409; + fRef = A192FB0F120DDB73000D15AD /* PlaqueAnnotation.m */; + name = "PlaqueAnnotation.m: 20"; + rLen = 6; + rLoc = 353; rType = 0; - vrLen = 1423; - vrLoc = 15921; + vrLen = 397; + vrLoc = 0; }; - A1457D211260E4BD00586604 /* PBXTextBookmark */ = { + A121BC50122D844600997BAD /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 42"; + fRef = A192FB10120DDB73000D15AD /* PlaqueVO.h */; + name = "PlaqueVO.h: 27"; rLen = 0; - rLoc = 1030; + rLoc = 486; rType = 0; - vrLen = 1354; - vrLoc = 314; + vrLen = 1073; + vrLoc = 0; }; - A1457D2B1260E6A100586604 /* PBXTextBookmark */ = { + A121BC51122D844600997BAD /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 255"; + fRef = A1C229CB122586B6006E7929 /* SplashViewController.h */; + name = "SplashViewController.h: 1"; rLen = 0; - rLoc = 7154; + rLoc = 0; rType = 0; - vrLen = 1137; - vrLoc = 6002; + vrLen = 237; + vrLoc = 0; }; - A1457D301260E7A800586604 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 258"; - rLen = 0; - rLoc = 7080; - rType = 0; - vrLen = 1331; - vrLoc = 6164; + A134342112201AD100680410 /* PlaqueViewController.m:72 */ = { + isa = PBXFileBreakpoint; + actions = ( + ); + breakpointStyle = 0; + continueAfterActions = 0; + countType = 0; + delayBeforeContinue = 0; + fileReference = A1A334E4121B01A100F07720 /* PlaqueViewController.m */; + functionName = "-viewDidLoad"; + hitCount = 0; + ignoreCount = 0; + lineNumber = 72; + location = OpenPlaques; + modificationTime = 308511224.887253; + originalNumberOfMultipleMatches = 1; + state = 2; }; - A1457D331260E86800586604 /* PBXTextBookmark */ = { + A1457B8C126080E100586604 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 258"; - rLen = 0; - rLoc = 7118; + fRef = A192FB11120DDB73000D15AD /* PlaqueVO.m */; + name = "PlaqueVO.m: 53"; + rLen = 849; + rLoc = 1187; rType = 0; - vrLen = 1339; - vrLoc = 6164; + vrLen = 1632; + vrLoc = 440; + }; + A1457B8E126080E100586604 /* XDModelBookmark */ = { + isa = XDModelBookmark; + fRef = 28C3AD890F43EF2300507BA6 /* OpenPlaques.xcdatamodel */; + fallbackIsa = PBXBookmark; }; - A1457D361260E8E000586604 /* PBXTextBookmark */ = { + A1457BD7126087D700586604 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 638"; + fRef = A17BE0A31227DF4F00E0564A /* PlaqueDetailViewController.h */; + name = "PlaqueDetailViewController.h: 42"; rLen = 0; - rLoc = 20075; + rLoc = 1251; rType = 0; - vrLen = 1425; - vrLoc = 18713; + vrLen = 1258; + vrLoc = 0; }; - A1457D391260EA3500586604 /* PBXTextBookmark */ = { + A1457C371260D51A00586604 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; - name = "OpenPlaquesAppDelegate.m: 256"; + fRef = A17BE0A41227DF4F00E0564A /* PlaqueDetailViewController.m */; + name = "PlaqueDetailViewController.m: 352"; rLen = 0; - rLoc = 6995; + rLoc = 12682; rType = 0; - vrLen = 1106; - vrLoc = 6078; + vrLen = 1472; + vrLoc = 10369; }; - A14EB3EA124413790081E81C /* PBXTextBookmark */ = { + A1457C741260DA0400586604 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = A17BE0A41227DF4F00E0564A /* PlaqueDetailViewController.m */; - name = "PlaqueDetailViewController.m: 189"; + fRef = A192FB0C120DDB73000D15AD /* MapViewController.h */; + name = "MapViewController.h: 23"; rLen = 0; - rLoc = 7756; + rLoc = 474; rType = 0; - vrLen = 1993; + vrLen = 482; vrLoc = 0; }; - A17712841244BC1A00BD46C4 /* PBXTextBookmark */ = { + A1457E041261246F00586604 /* PBXTextBookmark */ = { isa = PBXTextBookmark; - fRef = A192FB11120DDB73000D15AD /* PlaqueVO.m */; - name = "PlaqueVO.m: 53"; + fRef = A192FB0D120DDB73000D15AD /* MapViewController.m */; + name = "MapViewController.m: 137"; rLen = 0; - rLoc = 1186; + rLoc = 3993; rType = 0; - vrLen = 1610; - vrLoc = 462; + vrLen = 1147; + vrLoc = 3234; }; A177129D1244BDDD00BD46C4 /* PBXTextBookmark */ = { isa = PBXTextBookmark; @@ -1655,7 +725,7 @@ }; A17BE0A31227DF4F00E0564A /* PlaqueDetailViewController.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {720, 559}}"; + sepNavIntBoundsRect = "{{0, 0}, {720, 585}}"; sepNavSelRange = "{1251, 0}"; sepNavVisRange = "{758, 500}"; }; @@ -1760,9 +830,9 @@ }; A192FB0D120DDB73000D15AD /* MapViewController.m */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {920, 2327}}"; - sepNavSelRange = "{1319, 0}"; - sepNavVisRange = "{884, 764}"; + sepNavIntBoundsRect = "{{0, 0}, {1109, 2392}}"; + sepNavSelRange = "{3426, 0}"; + sepNavVisRange = "{3263, 1231}"; sepNavWindowFrame = "{{19, 91}, {1149, 782}}"; }; }; @@ -1816,16 +886,6 @@ vrLen = 833; vrLoc = 0; }; - A198C1D41242BB64005F3F4E /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = A17BE0A31227DF4F00E0564A /* PlaqueDetailViewController.h */; - name = "PlaqueDetailViewController.h: 38"; - rLen = 0; - rLoc = 1203; - rType = 0; - vrLen = 1282; - vrLoc = 0; - }; A1A3340C12169DE100F07720 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = A1A3340D12169DE100F07720 /* MapViewController.m */; @@ -1886,16 +946,46 @@ }; A1C229CB122586B6006E7929 /* SplashViewController.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1109, 648}}"; - sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{0, 237}"; + sepNavIntBoundsRect = "{{0, 0}, {920, 388}}"; + sepNavSelRange = "{356, 0}"; + sepNavVisRange = "{0, 364}"; }; }; A1C229CC122586B6006E7929 /* SplashViewController.m */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1109, 897}}"; - sepNavSelRange = "{1184, 0}"; - sepNavVisRange = "{46, 1364}"; + sepNavIntBoundsRect = "{{0, 0}, {1109, 1534}}"; + sepNavSelRange = "{759, 426}"; + sepNavVisRange = "{608, 1219}"; }; }; + A1D319FF12612DCB00436B49 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 1D3623240D0F684500981E51 /* OpenPlaquesAppDelegate.h */; + name = "OpenPlaquesAppDelegate.h: 33"; + rLen = 15; + rLoc = 783; + rType = 0; + vrLen = 1648; + vrLoc = 360; + }; + A1D31A571261D70C00436B49 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; + name = "OpenPlaquesAppDelegate.m: 28"; + rLen = 108; + rLoc = 526; + rType = 0; + vrLen = 1288; + vrLoc = 389; + }; + A1D31A601262FE8500436B49 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 1D3623250D0F684500981E51 /* OpenPlaquesAppDelegate.m */; + name = "OpenPlaquesAppDelegate.m: 28"; + rLen = 108; + rLoc = 526; + rType = 0; + vrLen = 1431; + vrLoc = 18039; + }; } diff --git a/OpenPlaques.xcodeproj/project.pbxproj b/OpenPlaques.xcodeproj/project.pbxproj index 69c7d40..00e8b79 100755 --- a/OpenPlaques.xcodeproj/project.pbxproj +++ b/OpenPlaques.xcodeproj/project.pbxproj @@ -381,7 +381,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; - CODE_SIGN_ENTITLEMENTS = Entitlements.plist; + CODE_SIGN_ENTITLEMENTS = ""; COPY_PHASE_STRIP = NO; CURRENT_PROJECT_VERSION = 1.01; GCC_DYNAMIC_NO_PIC = NO; @@ -452,7 +452,7 @@ isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - CODE_SIGN_ENTITLEMENTS = Entitlements.plist; + CODE_SIGN_ENTITLEMENTS = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer: Emily Toop (29T4RKX3D3)"; GCC_C_LANGUAGE_STANDARD = c99; GCC_WARN_ABOUT_RETURN_TYPE = YES;