Skip to content

Commit 46a3ff4

Browse files
committed
2.1 Changes
* Fixed demo projects to use master copy of NSObject-ObjectMap * Changed instances of int to NSInteger to prepare for 64bit architectures
1 parent 4f31093 commit 46a3ff4

9 files changed

Lines changed: 28 additions & 1969 deletions

File tree

Demos/GooglePlacesDemo/GooglePlacesDemo.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535
40E75FBE1796E90100AEC295 /* GooglePlacesWebservice.m in Sources */ = {isa = PBXBuildFile; fileRef = 40E75FBD1796E90100AEC295 /* GooglePlacesWebservice.m */; };
3636
40E75FC01796EBC500AEC295 /* SearchIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 40E75FBF1796EBC500AEC295 /* SearchIcon.png */; };
3737
40E75FC41796EFDC00AEC295 /* MapPin.png in Resources */ = {isa = PBXBuildFile; fileRef = 40E75FC21796EFDC00AEC295 /* MapPin.png */; };
38-
40E75FC71796F10300AEC295 /* NSObject+ObjectMap.m in Sources */ = {isa = PBXBuildFile; fileRef = 40E75FC61796F10300AEC295 /* NSObject+ObjectMap.m */; };
3938
40E75FCA1796F26500AEC295 /* MapAnnotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 40E75FC91796F26500AEC295 /* MapAnnotation.m */; };
4039
40E75FCC17970BCE00AEC295 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40E75FCB17970BCE00AEC295 /* MapKit.framework */; };
4140
40E75FCE17970D7D00AEC295 /* MapPin@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 40E75FCD17970D7D00AEC295 /* MapPin@2x.png */; };
4241
40E75FD7179710C100AEC295 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40E75FD6179710C100AEC295 /* CoreLocation.framework */; };
42+
B6F7E06A18C61F9500EBD65F /* NSObject+ObjectMap.m in Sources */ = {isa = PBXBuildFile; fileRef = B6F7E06918C61F9500EBD65F /* NSObject+ObjectMap.m */; };
4343
/* End PBXBuildFile section */
4444

4545
/* Begin PBXFileReference section */
@@ -91,13 +91,13 @@
9191
40E75FBD1796E90100AEC295 /* GooglePlacesWebservice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GooglePlacesWebservice.m; sourceTree = "<group>"; };
9292
40E75FBF1796EBC500AEC295 /* SearchIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SearchIcon.png; sourceTree = "<group>"; };
9393
40E75FC21796EFDC00AEC295 /* MapPin.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MapPin.png; sourceTree = "<group>"; };
94-
40E75FC51796F10300AEC295 /* NSObject+ObjectMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ObjectMap.h"; sourceTree = "<group>"; };
95-
40E75FC61796F10300AEC295 /* NSObject+ObjectMap.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ObjectMap.m"; sourceTree = "<group>"; };
9694
40E75FC81796F26500AEC295 /* MapAnnotation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MapAnnotation.h; sourceTree = "<group>"; };
9795
40E75FC91796F26500AEC295 /* MapAnnotation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MapAnnotation.m; sourceTree = "<group>"; };
9896
40E75FCB17970BCE00AEC295 /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
9997
40E75FCD17970D7D00AEC295 /* MapPin@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "MapPin@2x.png"; sourceTree = "<group>"; };
10098
40E75FD6179710C100AEC295 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
99+
B6F7E06818C61F9500EBD65F /* NSObject+ObjectMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSObject+ObjectMap.h"; path = "../../../NSObject-ObjectMap/NSObject+ObjectMap.h"; sourceTree = "<group>"; };
100+
B6F7E06918C61F9500EBD65F /* NSObject+ObjectMap.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSObject+ObjectMap.m"; path = "../../../NSObject-ObjectMap/NSObject+ObjectMap.m"; sourceTree = "<group>"; };
101101
/* End PBXFileReference section */
102102

103103
/* Begin PBXFrameworksBuildPhase section */
@@ -148,8 +148,8 @@
148148
40E75F731796E88E00AEC295 /* GooglePlacesDemo */ = {
149149
isa = PBXGroup;
150150
children = (
151-
40E75FC51796F10300AEC295 /* NSObject+ObjectMap.h */,
152-
40E75FC61796F10300AEC295 /* NSObject+ObjectMap.m */,
151+
B6F7E06818C61F9500EBD65F /* NSObject+ObjectMap.h */,
152+
B6F7E06918C61F9500EBD65F /* NSObject+ObjectMap.m */,
153153
40E75F931796E8C500AEC295 /* Google Places */,
154154
40E75F7C1796E88E00AEC295 /* AppDelegate.h */,
155155
40E75F7D1796E88E00AEC295 /* AppDelegate.m */,
@@ -309,9 +309,9 @@
309309
40E75FB81796E8F400AEC295 /* GooglePlaceDetails.m in Sources */,
310310
40E75FB91796E8F400AEC295 /* GoogleAddressComponent.m in Sources */,
311311
40E75FBA1796E8F400AEC295 /* GoogleReview.m in Sources */,
312+
B6F7E06A18C61F9500EBD65F /* NSObject+ObjectMap.m in Sources */,
312313
40E75FBB1796E8F400AEC295 /* GoogleReviewAspect.m in Sources */,
313314
40E75FBE1796E90100AEC295 /* GooglePlacesWebservice.m in Sources */,
314-
40E75FC71796F10300AEC295 /* NSObject+ObjectMap.m in Sources */,
315315
40E75FCA1796F26500AEC295 /* MapAnnotation.m in Sources */,
316316
11CD5EB317AA96BF00CF3BDD /* GPOperation.m in Sources */,
317317
);

Demos/GooglePlacesDemo/GooglePlacesDemo/NSObject+ObjectMap.h

Lines changed: 0 additions & 55 deletions
This file was deleted.

0 commit comments

Comments
 (0)