Repository: s3lvin/DXCustomCallout-ObjC Branch: master Commit: 13a045dfbc20 Files: 59 Total size: 122.4 KB Directory structure: gitextract_7dwhedlo/ ├── .gitignore ├── .travis.yml ├── DXCustomCallout-ObjC.podspec ├── Example/ │ ├── DXCustomCallout-ObjC/ │ │ ├── Base.lproj/ │ │ │ ├── Main_iPad.storyboard │ │ │ └── Main_iPhone.storyboard │ │ ├── DXAppDelegate.h │ │ ├── DXAppDelegate.m │ │ ├── DXCustomCallout-ObjC-Info.plist │ │ ├── DXCustomCallout-ObjC-Prefix.pch │ │ ├── DXViewController.h │ │ ├── DXViewController.m │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── LaunchImage.launchimage/ │ │ │ │ └── Contents.json │ │ │ ├── car-blue-icon.imageset/ │ │ │ │ └── Contents.json │ │ │ └── pin.imageset/ │ │ │ └── Contents.json │ │ ├── en.lproj/ │ │ │ └── InfoPlist.strings │ │ ├── main.m │ │ └── myView.xib │ ├── DXCustomCallout-ObjC.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── DXCustomCallout-ObjC-Example.xcscheme │ ├── DXCustomCallout-ObjC.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── Podfile │ ├── Pods/ │ │ ├── Local Podspecs/ │ │ │ └── DXCustomCallout-ObjC.podspec.json │ │ ├── Pods.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── Target Support Files/ │ │ ├── Pods-DXCustomCallout-ObjC/ │ │ │ ├── Pods-DXCustomCallout-ObjC-acknowledgements.markdown │ │ │ ├── Pods-DXCustomCallout-ObjC-acknowledgements.plist │ │ │ ├── Pods-DXCustomCallout-ObjC-dummy.m │ │ │ ├── Pods-DXCustomCallout-ObjC-environment.h │ │ │ ├── Pods-DXCustomCallout-ObjC-resources.sh │ │ │ ├── Pods-DXCustomCallout-ObjC.debug.xcconfig │ │ │ └── Pods-DXCustomCallout-ObjC.release.xcconfig │ │ ├── Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC/ │ │ │ ├── Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-Private.xcconfig │ │ │ ├── Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-dummy.m │ │ │ ├── Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-prefix.pch │ │ │ └── Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC.xcconfig │ │ ├── Pods-Tests/ │ │ │ ├── Pods-Tests-acknowledgements.markdown │ │ │ ├── Pods-Tests-acknowledgements.plist │ │ │ ├── Pods-Tests-dummy.m │ │ │ ├── Pods-Tests-environment.h │ │ │ ├── Pods-Tests-resources.sh │ │ │ ├── Pods-Tests.debug.xcconfig │ │ │ └── Pods-Tests.release.xcconfig │ │ └── Pods-Tests-DXCustomCallout-ObjC/ │ │ ├── Pods-Tests-DXCustomCallout-ObjC-Private.xcconfig │ │ ├── Pods-Tests-DXCustomCallout-ObjC-dummy.m │ │ ├── Pods-Tests-DXCustomCallout-ObjC-prefix.pch │ │ └── Pods-Tests-DXCustomCallout-ObjC.xcconfig │ └── Tests/ │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj/ │ └── InfoPlist.strings ├── LICENSE ├── Pod/ │ ├── Assets/ │ │ └── .gitkeep │ └── Classes/ │ ├── .gitkeep │ ├── DXAnnotationSettings.h │ ├── DXAnnotationSettings.m │ ├── DXAnnotationView.h │ └── DXAnnotationView.m └── README.md ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ # OS X .DS_Store # Xcode build/ *.pbxuser !default.pbxuser *.mode1v3 !default.mode1v3 *.mode2v3 !default.mode2v3 *.perspectivev3 !default.perspectivev3 xcuserdata *.xccheckout profile *.moved-aside DerivedData *.hmap *.ipa # Bundler .bundle # We recommend against adding the Pods directory to your .gitignore. However # you should judge for yourself, the pros and cons are mentioned at: # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control # # Note: if you ignore the Pods directory, make sure to uncomment # `pod install` in .travis.yml # # Pods/ ================================================ FILE: .travis.yml ================================================ # references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c # cache: cocoapods # podfile: Example/Podfile # before_install: # - gem install cocoapods # Since Travis is not always on latest version # - pod install --project-directory=Example install: - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: - set -o pipefail && xcodebuild test -workspace Example/DXCustomCallout-ObjC.xcworkspace -scheme DXCustomCallout-ObjC-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c - pod lib lint --quick ================================================ FILE: DXCustomCallout-ObjC.podspec ================================================ # # Be sure to run `pod lib lint DXCustomCallout-ObjC.podspec' to ensure this is a # valid spec and remove all comments before submitting the spec. # # Any lines starting with a # are optional, but encouraged # # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html # Pod::Spec.new do |s| s.name = "DXCustomCallout-ObjC" s.version = "0.2.0" s.summary = "A simpler approach to CustomCallouts on MKMapview" s.description = <<-DESC DXAnnotationView takes a PinView and a CalloutView as UIViews and beautifully displays it in MKMapView. It is; * Easy to use * Highly configurable DESC s.homepage = "https://github.com/s3lvin/DXCustomCallout-ObjC" s.screenshots = "http://s26.postimg.org/68lrdhei1/i_OS_Simulator_Screen_Shot_13_Apr_2015_1_02_35_am.png" s.license = 'MIT' s.author = { "s3lvin" => "mariaselvin@gmail.com" } s.source = { :git => "https://github.com/s3lvin/DXCustomCallout-ObjC.git", :tag => s.version.to_s } s.platform = :ios, '7.0' s.requires_arc = true s.source_files = 'Pod/Classes/**/*' #s.public_header_files = 'Pod/Classes/**/*.h' s.frameworks = 'UIKit', 'MapKit' end ================================================ FILE: Example/DXCustomCallout-ObjC/Base.lproj/Main_iPad.storyboard ================================================ ================================================ FILE: Example/DXCustomCallout-ObjC/Base.lproj/Main_iPhone.storyboard ================================================ ================================================ FILE: Example/DXCustomCallout-ObjC/DXAppDelegate.h ================================================ // // DXAppDelegate.h // DXCustomCallout-ObjC // // Created by CocoaPods on 04/13/2015. // Copyright (c) 2014 s3lvin. All rights reserved. // #import @interface DXAppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @end ================================================ FILE: Example/DXCustomCallout-ObjC/DXAppDelegate.m ================================================ // // DXAppDelegate.m // DXCustomCallout-ObjC // // Created by CocoaPods on 04/13/2015. // Copyright (c) 2014 s3lvin. All rights reserved. // #import "DXAppDelegate.h" @implementation DXAppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. return YES; } - (void)applicationWillResignActive:(UIApplication *)application { // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. } - (void)applicationDidEnterBackground:(UIApplication *)application { // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. } - (void)applicationWillEnterForeground:(UIApplication *)application { // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. } - (void)applicationDidBecomeActive:(UIApplication *)application { // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. } - (void)applicationWillTerminate:(UIApplication *)application { // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. } @end ================================================ FILE: Example/DXCustomCallout-ObjC/DXCustomCallout-ObjC-Info.plist ================================================ CFBundleDevelopmentRegion en CFBundleDisplayName ${PRODUCT_NAME} CFBundleExecutable ${EXECUTABLE_NAME} CFBundleIdentifier org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier} CFBundleInfoDictionaryVersion 6.0 CFBundleName ${PRODUCT_NAME} CFBundlePackageType APPL CFBundleShortVersionString 1.0 CFBundleSignature ???? CFBundleVersion 1.0 LSRequiresIPhoneOS UIMainStoryboardFile Main_iPhone UIMainStoryboardFile~ipad Main_iPad UIRequiredDeviceCapabilities armv7 UISupportedInterfaceOrientations UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UISupportedInterfaceOrientations~ipad UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight ================================================ FILE: Example/DXCustomCallout-ObjC/DXCustomCallout-ObjC-Prefix.pch ================================================ // // Prefix header // // The contents of this file are implicitly included at the beginning of every source file. // #import #ifndef __IPHONE_5_0 #warning "This project uses features only available in iOS SDK 5.0 and later." #endif #ifdef __OBJC__ #import #import #import #import #import #endif ================================================ FILE: Example/DXCustomCallout-ObjC/DXViewController.h ================================================ // // DXViewController.h // DXCustomCallout-ObjC // // Created by s3lvin on 04/13/2015. // Copyright (c) 2014 s3lvin. All rights reserved. // #import @interface DXViewController : UIViewController @end ================================================ FILE: Example/DXCustomCallout-ObjC/DXViewController.m ================================================ // // DXViewController.m // DXCustomCallout-ObjC // // Created by s3lvin on 04/13/2015. // Copyright (c) 2014 s3lvin. All rights reserved. // #import "DXViewController.h" @interface DXAnnotation : NSObject @property(nonatomic, assign) CLLocationCoordinate2D coordinate; @end @interface DXViewController () @property(weak, nonatomic) IBOutlet MKMapView *mapView; @end @implementation DXViewController - (void)viewDidLoad { [super viewDidLoad]; DXAnnotation *annotation1 = [DXAnnotation new]; annotation1.coordinate = CLLocationCoordinate2DMake(12.9667, 77.5667); [self.mapView addAnnotation:annotation1]; DXAnnotation *ann2 = [DXAnnotation new]; ann2.coordinate = CLLocationCoordinate2DMake(44.518640, 11.362665); DXAnnotation *ann3 = [DXAnnotation new]; ann3.coordinate = CLLocationCoordinate2DMake(44.521318, 11.374080); DXAnnotation *ann4 = [DXAnnotation new]; ann4.coordinate = CLLocationCoordinate2DMake(44.500746, 11.345394); DXAnnotation *ann5 = [DXAnnotation new]; ann5.coordinate = CLLocationCoordinate2DMake(44.490537, 11.358033); DXAnnotation *ann6 = [DXAnnotation new]; ann6.coordinate = CLLocationCoordinate2DMake(44.504082, 11.354256); [self.mapView addAnnotation:ann2]; [self.mapView addAnnotation:ann3]; [self.mapView addAnnotation:ann4]; [self.mapView addAnnotation:ann5]; [self.mapView addAnnotation:ann6]; [self.mapView setRegion:MKCoordinateRegionMakeWithDistance(ann2.coordinate, 10000, 10000)]; } - (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id)annotation { if ([annotation isKindOfClass:[DXAnnotation class]]) { UIImageView *pinView = nil; UIView *calloutView = nil; DXAnnotationView *annotationView = (DXAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:NSStringFromClass([DXAnnotationView class])]; if (!annotationView) { pinView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pin"]]; calloutView = [[[NSBundle mainBundle] loadNibNamed:@"myView" owner:self options:nil] firstObject]; annotationView = [[DXAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:NSStringFromClass([DXAnnotationView class]) pinView:pinView calloutView:calloutView settings:[DXAnnotationSettings defaultSettings]]; }else { //Changing PinView's image to test the recycle pinView = (UIImageView *)annotationView.pinView; pinView.image = [UIImage imageNamed:@"car-blue-icon"]; } return annotationView; } return nil; } - (void)mapView:(MKMapView *)mapView didDeselectAnnotationView:(MKAnnotationView *)view { if ([view isKindOfClass:[DXAnnotationView class]]) { [((DXAnnotationView *)view)hideCalloutView]; view.layer.zPosition = -1; } } - (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view { if ([view isKindOfClass:[DXAnnotationView class]]) { [((DXAnnotationView *)view)showCalloutView]; view.layer.zPosition = 0; } } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } @end @implementation DXAnnotation @end ================================================ FILE: Example/DXCustomCallout-ObjC/Images.xcassets/AppIcon.appiconset/Contents.json ================================================ { "images" : [ { "idiom" : "iphone", "size" : "29x29", "scale" : "2x" }, { "idiom" : "iphone", "size" : "40x40", "scale" : "2x" }, { "idiom" : "iphone", "size" : "60x60", "scale" : "2x" }, { "idiom" : "iphone", "size" : "60x60", "scale" : "3x" }, { "idiom" : "ipad", "size" : "29x29", "scale" : "1x" }, { "idiom" : "ipad", "size" : "29x29", "scale" : "2x" }, { "idiom" : "ipad", "size" : "40x40", "scale" : "1x" }, { "idiom" : "ipad", "size" : "40x40", "scale" : "2x" }, { "idiom" : "ipad", "size" : "76x76", "scale" : "1x" }, { "idiom" : "ipad", "size" : "76x76", "scale" : "2x" } ], "info" : { "version" : 1, "author" : "xcode" } } ================================================ FILE: Example/DXCustomCallout-ObjC/Images.xcassets/LaunchImage.launchimage/Contents.json ================================================ { "images" : [ { "orientation" : "portrait", "idiom" : "iphone", "extent" : "full-screen", "minimum-system-version" : "7.0", "scale" : "2x" }, { "orientation" : "portrait", "idiom" : "iphone", "subtype" : "retina4", "extent" : "full-screen", "minimum-system-version" : "7.0", "scale" : "2x" }, { "orientation" : "portrait", "idiom" : "ipad", "extent" : "full-screen", "minimum-system-version" : "7.0", "scale" : "1x" }, { "orientation" : "landscape", "idiom" : "ipad", "extent" : "full-screen", "minimum-system-version" : "7.0", "scale" : "1x" }, { "orientation" : "portrait", "idiom" : "ipad", "extent" : "full-screen", "minimum-system-version" : "7.0", "scale" : "2x" }, { "orientation" : "landscape", "idiom" : "ipad", "extent" : "full-screen", "minimum-system-version" : "7.0", "scale" : "2x" } ], "info" : { "version" : 1, "author" : "xcode" } } ================================================ FILE: Example/DXCustomCallout-ObjC/Images.xcassets/car-blue-icon.imageset/Contents.json ================================================ { "images" : [ { "idiom" : "universal", "scale" : "1x", "filename" : "car-blue-icon.png" }, { "idiom" : "universal", "scale" : "2x" }, { "idiom" : "universal", "scale" : "3x" } ], "info" : { "version" : 1, "author" : "xcode" } } ================================================ FILE: Example/DXCustomCallout-ObjC/Images.xcassets/pin.imageset/Contents.json ================================================ { "images" : [ { "idiom" : "universal", "scale" : "1x", "filename" : "pin.png" }, { "idiom" : "universal", "scale" : "2x" }, { "idiom" : "universal", "scale" : "3x" } ], "info" : { "version" : 1, "author" : "xcode" } } ================================================ FILE: Example/DXCustomCallout-ObjC/en.lproj/InfoPlist.strings ================================================ /* Localized versions of Info.plist keys */ ================================================ FILE: Example/DXCustomCallout-ObjC/main.m ================================================ // // main.m // DXCustomCallout-ObjC // // Created by s3lvin on 04/13/2015. // Copyright (c) 2014 s3lvin. All rights reserved. // #import #import "DXAppDelegate.h" int main(int argc, char * argv[]) { @autoreleasepool { return UIApplicationMain(argc, argv, nil, NSStringFromClass([DXAppDelegate class])); } } ================================================ FILE: Example/DXCustomCallout-ObjC/myView.xib ================================================ ================================================ FILE: Example/DXCustomCallout-ObjC.xcodeproj/project.pbxproj ================================================ // !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 46; objects = { /* Begin PBXBuildFile section */ 11AC0D971ADAFAF8004A629A /* myView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 11AC0D961ADAFAF8004A629A /* myView.xib */; }; 57F7B703970580BED8D3F261 /* libPods-Tests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E1887B2802449DB13BD8970 /* libPods-Tests.a */; }; 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 6003F59E195388D20070C39A /* DXAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* DXAppDelegate.m */; }; 6003F5A1195388D20070C39A /* Main_iPhone.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6003F59F195388D20070C39A /* Main_iPhone.storyboard */; }; 6003F5A4195388D20070C39A /* Main_iPad.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A2195388D20070C39A /* Main_iPad.storyboard */; }; 6003F5A7195388D20070C39A /* DXViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* DXViewController.m */; }; 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; }; 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; }; 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; }; 6D99F8811D11046264A12E59 /* libPods-DXCustomCallout-ObjC.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EF0EDC8DD0BD5AEAE596A755 /* libPods-DXCustomCallout-ObjC.a */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 6003F582195388D10070C39A /* Project object */; proxyType = 1; remoteGlobalIDString = 6003F589195388D20070C39A; remoteInfo = "DXCustomCallout-ObjC"; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ 11AC0D961ADAFAF8004A629A /* myView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = myView.xib; sourceTree = ""; }; 2E1887B2802449DB13BD8970 /* libPods-Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 4A33D774E30B97BFF81FD6B3 /* Pods-DXCustomCallout-ObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DXCustomCallout-ObjC.debug.xcconfig"; path = "Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC.debug.xcconfig"; sourceTree = ""; }; 5BE4009AFBE04B20E4EB3ED9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 6003F58A195388D20070C39A /* DXCustomCallout-ObjC.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "DXCustomCallout-ObjC.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 6003F595195388D20070C39A /* DXCustomCallout-ObjC-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "DXCustomCallout-ObjC-Info.plist"; sourceTree = ""; }; 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 6003F59B195388D20070C39A /* DXCustomCallout-ObjC-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "DXCustomCallout-ObjC-Prefix.pch"; sourceTree = ""; }; 6003F59C195388D20070C39A /* DXAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DXAppDelegate.h; sourceTree = ""; }; 6003F59D195388D20070C39A /* DXAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DXAppDelegate.m; sourceTree = ""; }; 6003F5A0195388D20070C39A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main_iPhone.storyboard; sourceTree = ""; }; 6003F5A3195388D20070C39A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main_iPad.storyboard; sourceTree = ""; }; 6003F5A5195388D20070C39A /* DXViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DXViewController.h; sourceTree = ""; }; 6003F5A6195388D20070C39A /* DXViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DXViewController.m; sourceTree = ""; }; 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 6003F5AE195388D20070C39A /* Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; 60846373611B4BDADA49F1AE /* Pods-Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig"; sourceTree = ""; }; 894E6637B8AD0C9A403CD45B /* DXCustomCallout-ObjC.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = "DXCustomCallout-ObjC.podspec"; path = "../DXCustomCallout-ObjC.podspec"; sourceTree = ""; }; 93E68A797C842B276D7EED1E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; DFA299114547A8ADEB5044A3 /* Pods-DXCustomCallout-ObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DXCustomCallout-ObjC.release.xcconfig"; path = "Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC.release.xcconfig"; sourceTree = ""; }; E7DA2923DA00C04B2D3FC17C /* Pods-Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig"; sourceTree = ""; }; EF0EDC8DD0BD5AEAE596A755 /* libPods-DXCustomCallout-ObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DXCustomCallout-ObjC.a"; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ 6003F587195388D20070C39A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 6D99F8811D11046264A12E59 /* libPods-DXCustomCallout-ObjC.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; 6003F5AB195388D20070C39A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, 57F7B703970580BED8D3F261 /* libPods-Tests.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ 5A78F101234DAA0381498F28 /* Pods */ = { isa = PBXGroup; children = ( 4A33D774E30B97BFF81FD6B3 /* Pods-DXCustomCallout-ObjC.debug.xcconfig */, DFA299114547A8ADEB5044A3 /* Pods-DXCustomCallout-ObjC.release.xcconfig */, 60846373611B4BDADA49F1AE /* Pods-Tests.debug.xcconfig */, E7DA2923DA00C04B2D3FC17C /* Pods-Tests.release.xcconfig */, ); name = Pods; sourceTree = ""; }; 6003F581195388D10070C39A = { isa = PBXGroup; children = ( 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, 6003F593195388D20070C39A /* DXCustomCallout-ObjC */, 6003F5B5195388D20070C39A /* Tests */, 6003F58C195388D20070C39A /* Frameworks */, 6003F58B195388D20070C39A /* Products */, 5A78F101234DAA0381498F28 /* Pods */, ); sourceTree = ""; }; 6003F58B195388D20070C39A /* Products */ = { isa = PBXGroup; children = ( 6003F58A195388D20070C39A /* DXCustomCallout-ObjC.app */, 6003F5AE195388D20070C39A /* Tests.xctest */, ); name = Products; sourceTree = ""; }; 6003F58C195388D20070C39A /* Frameworks */ = { isa = PBXGroup; children = ( 6003F58D195388D20070C39A /* Foundation.framework */, 6003F58F195388D20070C39A /* CoreGraphics.framework */, 6003F591195388D20070C39A /* UIKit.framework */, 6003F5AF195388D20070C39A /* XCTest.framework */, EF0EDC8DD0BD5AEAE596A755 /* libPods-DXCustomCallout-ObjC.a */, 2E1887B2802449DB13BD8970 /* libPods-Tests.a */, ); name = Frameworks; sourceTree = ""; }; 6003F593195388D20070C39A /* DXCustomCallout-ObjC */ = { isa = PBXGroup; children = ( 6003F59C195388D20070C39A /* DXAppDelegate.h */, 6003F59D195388D20070C39A /* DXAppDelegate.m */, 6003F59F195388D20070C39A /* Main_iPhone.storyboard */, 6003F5A2195388D20070C39A /* Main_iPad.storyboard */, 6003F5A5195388D20070C39A /* DXViewController.h */, 6003F5A6195388D20070C39A /* DXViewController.m */, 11AC0D961ADAFAF8004A629A /* myView.xib */, 6003F5A8195388D20070C39A /* Images.xcassets */, 6003F594195388D20070C39A /* Supporting Files */, ); path = "DXCustomCallout-ObjC"; sourceTree = ""; }; 6003F594195388D20070C39A /* Supporting Files */ = { isa = PBXGroup; children = ( 6003F595195388D20070C39A /* DXCustomCallout-ObjC-Info.plist */, 6003F596195388D20070C39A /* InfoPlist.strings */, 6003F599195388D20070C39A /* main.m */, 6003F59B195388D20070C39A /* DXCustomCallout-ObjC-Prefix.pch */, ); name = "Supporting Files"; sourceTree = ""; }; 6003F5B5195388D20070C39A /* Tests */ = { isa = PBXGroup; children = ( 6003F5BB195388D20070C39A /* Tests.m */, 6003F5B6195388D20070C39A /* Supporting Files */, ); path = Tests; sourceTree = ""; }; 6003F5B6195388D20070C39A /* Supporting Files */ = { isa = PBXGroup; children = ( 6003F5B7195388D20070C39A /* Tests-Info.plist */, 6003F5B8195388D20070C39A /* InfoPlist.strings */, 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, ); name = "Supporting Files"; sourceTree = ""; }; 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { isa = PBXGroup; children = ( 894E6637B8AD0C9A403CD45B /* DXCustomCallout-ObjC.podspec */, 5BE4009AFBE04B20E4EB3ED9 /* README.md */, 93E68A797C842B276D7EED1E /* LICENSE */, ); name = "Podspec Metadata"; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ 6003F589195388D20070C39A /* DXCustomCallout-ObjC */ = { isa = PBXNativeTarget; buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "DXCustomCallout-ObjC" */; buildPhases = ( F064153D5392E9F222B37F18 /* Check Pods Manifest.lock */, 6003F586195388D20070C39A /* Sources */, 6003F587195388D20070C39A /* Frameworks */, 6003F588195388D20070C39A /* Resources */, 0A5F11089196DADCB8E22072 /* Copy Pods Resources */, ); buildRules = ( ); dependencies = ( ); name = "DXCustomCallout-ObjC"; productName = "DXCustomCallout-ObjC"; productReference = 6003F58A195388D20070C39A /* DXCustomCallout-ObjC.app */; productType = "com.apple.product-type.application"; }; 6003F5AD195388D20070C39A /* Tests */ = { isa = PBXNativeTarget; buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "Tests" */; buildPhases = ( 00A2B15D31509C5BE882E798 /* Check Pods Manifest.lock */, 6003F5AA195388D20070C39A /* Sources */, 6003F5AB195388D20070C39A /* Frameworks */, 6003F5AC195388D20070C39A /* Resources */, 3A8C66BD0B5D1914663B5A68 /* Copy Pods Resources */, ); buildRules = ( ); dependencies = ( 6003F5B4195388D20070C39A /* PBXTargetDependency */, ); name = Tests; productName = "DXCustomCallout-ObjCTests"; productReference = 6003F5AE195388D20070C39A /* Tests.xctest */; productType = "com.apple.product-type.bundle.unit-test"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ 6003F582195388D10070C39A /* Project object */ = { isa = PBXProject; attributes = { CLASSPREFIX = DX; LastUpgradeCheck = 0510; ORGANIZATIONNAME = s3lvin; TargetAttributes = { 6003F5AD195388D20070C39A = { TestTargetID = 6003F589195388D20070C39A; }; }; }; buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "DXCustomCallout-ObjC" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( en, Base, ); mainGroup = 6003F581195388D10070C39A; productRefGroup = 6003F58B195388D20070C39A /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( 6003F589195388D20070C39A /* DXCustomCallout-ObjC */, 6003F5AD195388D20070C39A /* Tests */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ 6003F588195388D20070C39A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( 11AC0D971ADAFAF8004A629A /* myView.xib in Resources */, 6003F5A4195388D20070C39A /* Main_iPad.storyboard in Resources */, 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 6003F5A1195388D20070C39A /* Main_iPhone.storyboard in Resources */, 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; 6003F5AC195388D20070C39A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ 00A2B15D31509C5BE882E798 /* Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); name = "Check Pods Manifest.lock"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; showEnvVarsInLog = 0; }; 0A5F11089196DADCB8E22072 /* Copy Pods Resources */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); name = "Copy Pods Resources"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-resources.sh\"\n"; showEnvVarsInLog = 0; }; 3A8C66BD0B5D1914663B5A68 /* Copy Pods Resources */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); name = "Copy Pods Resources"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh\"\n"; showEnvVarsInLog = 0; }; F064153D5392E9F222B37F18 /* Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); name = "Check Pods Manifest.lock"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; showEnvVarsInLog = 0; }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ 6003F586195388D20070C39A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 6003F59E195388D20070C39A /* DXAppDelegate.m in Sources */, 6003F5A7195388D20070C39A /* DXViewController.m in Sources */, 6003F59A195388D20070C39A /* main.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; 6003F5AA195388D20070C39A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 6003F5BC195388D20070C39A /* Tests.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { isa = PBXTargetDependency; target = 6003F589195388D20070C39A /* DXCustomCallout-ObjC */; targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXVariantGroup section */ 6003F596195388D20070C39A /* InfoPlist.strings */ = { isa = PBXVariantGroup; children = ( 6003F597195388D20070C39A /* en */, ); name = InfoPlist.strings; sourceTree = ""; }; 6003F59F195388D20070C39A /* Main_iPhone.storyboard */ = { isa = PBXVariantGroup; children = ( 6003F5A0195388D20070C39A /* Base */, ); name = Main_iPhone.storyboard; sourceTree = ""; }; 6003F5A2195388D20070C39A /* Main_iPad.storyboard */ = { isa = PBXVariantGroup; children = ( 6003F5A3195388D20070C39A /* Base */, ); name = Main_iPad.storyboard; sourceTree = ""; }; 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { isa = PBXVariantGroup; children = ( 6003F5B9195388D20070C39A /* en */, ); name = InfoPlist.strings; sourceTree = ""; }; /* End PBXVariantGroup section */ /* Begin XCBuildConfiguration section */ 6003F5BD195388D20070C39A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "$(inherited)", ); GCC_SYMBOLS_PRIVATE_EXTERN = NO; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 7.1; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; 6003F5BE195388D20070C39A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = YES; ENABLE_NS_ASSERTIONS = NO; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 7.1; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; 6003F5C0195388D20070C39A /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 4A33D774E30B97BFF81FD6B3 /* Pods-DXCustomCallout-ObjC.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "DXCustomCallout-ObjC/DXCustomCallout-ObjC-Prefix.pch"; INFOPLIST_FILE = "DXCustomCallout-ObjC/DXCustomCallout-ObjC-Info.plist"; PRODUCT_NAME = "$(TARGET_NAME)"; WRAPPER_EXTENSION = app; }; name = Debug; }; 6003F5C1195388D20070C39A /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = DFA299114547A8ADEB5044A3 /* Pods-DXCustomCallout-ObjC.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "DXCustomCallout-ObjC/DXCustomCallout-ObjC-Prefix.pch"; INFOPLIST_FILE = "DXCustomCallout-ObjC/DXCustomCallout-ObjC-Info.plist"; PRODUCT_NAME = "$(TARGET_NAME)"; WRAPPER_EXTENSION = app; }; name = Release; }; 6003F5C3195388D20070C39A /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 60846373611B4BDADA49F1AE /* Pods-Tests.debug.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/DXCustomCallout-ObjC.app/DXCustomCallout-ObjC"; FRAMEWORK_SEARCH_PATHS = ( "$(SDKROOT)/Developer/Library/Frameworks", "$(inherited)", "$(DEVELOPER_FRAMEWORKS_DIR)", ); GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "$(inherited)", ); INFOPLIST_FILE = "Tests/Tests-Info.plist"; PRODUCT_NAME = "$(TARGET_NAME)"; TEST_HOST = "$(BUNDLE_LOADER)"; WRAPPER_EXTENSION = xctest; }; name = Debug; }; 6003F5C4195388D20070C39A /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = E7DA2923DA00C04B2D3FC17C /* Pods-Tests.release.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/DXCustomCallout-ObjC.app/DXCustomCallout-ObjC"; FRAMEWORK_SEARCH_PATHS = ( "$(SDKROOT)/Developer/Library/Frameworks", "$(inherited)", "$(DEVELOPER_FRAMEWORKS_DIR)", ); GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; INFOPLIST_FILE = "Tests/Tests-Info.plist"; PRODUCT_NAME = "$(TARGET_NAME)"; TEST_HOST = "$(BUNDLE_LOADER)"; WRAPPER_EXTENSION = xctest; }; name = Release; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ 6003F585195388D10070C39A /* Build configuration list for PBXProject "DXCustomCallout-ObjC" */ = { isa = XCConfigurationList; buildConfigurations = ( 6003F5BD195388D20070C39A /* Debug */, 6003F5BE195388D20070C39A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "DXCustomCallout-ObjC" */ = { isa = XCConfigurationList; buildConfigurations = ( 6003F5C0195388D20070C39A /* Debug */, 6003F5C1195388D20070C39A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "Tests" */ = { isa = XCConfigurationList; buildConfigurations = ( 6003F5C3195388D20070C39A /* Debug */, 6003F5C4195388D20070C39A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; rootObject = 6003F582195388D10070C39A /* Project object */; } ================================================ FILE: Example/DXCustomCallout-ObjC.xcodeproj/project.xcworkspace/contents.xcworkspacedata ================================================ ================================================ FILE: Example/DXCustomCallout-ObjC.xcodeproj/xcshareddata/xcschemes/DXCustomCallout-ObjC-Example.xcscheme ================================================ ================================================ FILE: Example/DXCustomCallout-ObjC.xcworkspace/contents.xcworkspacedata ================================================ ================================================ FILE: Example/Podfile ================================================ source 'https://github.com/CocoaPods/Specs.git' target 'DXCustomCallout-ObjC', :exclusive => true do pod "DXCustomCallout-ObjC", :path => "../" end target 'Tests', :exclusive => true do pod "DXCustomCallout-ObjC", :path => "../" end ================================================ FILE: Example/Pods/Local Podspecs/DXCustomCallout-ObjC.podspec.json ================================================ { "name": "DXCustomCallout-ObjC", "version": "0.1.0", "summary": "A simpler approach to CustomCallouts on MKMapview", "description": "DXAnnotationView takes a PinView and a CalloutView as UIViews and beautifully displays it in MKMapView. It is;\n * Easy to use\n * Highly configurable\n", "homepage": "https://github.com/s3lvin/DXCustomCallout-ObjC", "screenshots": "http://s26.postimg.org/68lrdhei1/i_OS_Simulator_Screen_Shot_13_Apr_2015_1_02_35_am.png", "license": "MIT", "authors": { "s3lvin": "mariaselvin@gmail.com" }, "source": { "git": "https://github.com/s3lvin/DXCustomCallout-ObjC.git", "tag": "0.1.0" }, "platforms": { "ios": "7.0" }, "requires_arc": true, "source_files": "Pod/Classes/**/*", "frameworks": [ "UIKit", "MapKit" ] } ================================================ FILE: Example/Pods/Pods.xcodeproj/project.pbxproj ================================================ // !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 46; objects = { /* Begin PBXBuildFile section */ 13FDEEAC501E937B14EF5467 /* Pods-Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 33BBF57BD2C9545C8855D7E6 /* Pods-Tests-dummy.m */; }; 194B2C52A0373E657368566B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 395E7AA208620E168846F2A6 /* Foundation.framework */; }; 1A5B3F3670EF44BFB4D28994 /* DXAnnotationSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 004A2FB18727F047DD3AF3CD /* DXAnnotationSettings.h */; }; 23903084152BE1ED6A54EFCB /* DXAnnotationSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 004A2FB18727F047DD3AF3CD /* DXAnnotationSettings.h */; }; 4F50C7465DD0638A3CD4E0C6 /* DXAnnotationView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C9FB75341B2FC06C43C41F8 /* DXAnnotationView.h */; }; 4FE5BB317D796D0B658433CB /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0806C2AA905E679F08F51F08 /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-dummy.m */; }; 59EFFB5B6B77E45965288B43 /* DXAnnotationView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C9FB75341B2FC06C43C41F8 /* DXAnnotationView.h */; }; 629CFAF19F4D46C14538FA35 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E5B78CE101466C7907507B7 /* UIKit.framework */; }; 7352B106350C06043CD48EA1 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F2DFFE7B25F33A5E84757F3 /* MapKit.framework */; }; 9CE8E5F5C682D75F26ED492D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 395E7AA208620E168846F2A6 /* Foundation.framework */; }; 9D9B86646EECB30B4F78A184 /* Pods-DXCustomCallout-ObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F844355A79980A323632F3F /* Pods-DXCustomCallout-ObjC-dummy.m */; }; AF74D60CE6882FA5E28173EA /* DXAnnotationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F9D3CB94321C7C6F43E1944 /* DXAnnotationView.m */; }; B50B716C82D3DE9729432649 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F2DFFE7B25F33A5E84757F3 /* MapKit.framework */; }; BA462E9E19C91D44B09B2F12 /* Pods-Tests-DXCustomCallout-ObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C861F75C5FAD56C21B3A49F /* Pods-Tests-DXCustomCallout-ObjC-dummy.m */; }; C37599620CFA742604C4B99C /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E5B78CE101466C7907507B7 /* UIKit.framework */; }; E76B5A455542254DEF6476CF /* DXAnnotationSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = B755852E2704BF69F110D65F /* DXAnnotationSettings.m */; }; ECA7E3D64834B8F824848677 /* DXAnnotationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F9D3CB94321C7C6F43E1944 /* DXAnnotationView.m */; }; F2861901E2E4CFA6A60FA604 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 395E7AA208620E168846F2A6 /* Foundation.framework */; }; FC00AB4B96EB7401B3AD72DF /* DXAnnotationSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = B755852E2704BF69F110D65F /* DXAnnotationSettings.m */; }; FC3CF1948CF782C54E7B087F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 395E7AA208620E168846F2A6 /* Foundation.framework */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ 3607AEA744F4CD29655F2517 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = E102808068AE98DCBDB66504 /* Project object */; proxyType = 1; remoteGlobalIDString = 1B739FBCC6BBE765E83178B5; remoteInfo = "Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC"; }; E5C258B55BF0FA45E90F963D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = E102808068AE98DCBDB66504 /* Project object */; proxyType = 1; remoteGlobalIDString = A16A2BF9CDB37C00D12FF246; remoteInfo = "Pods-Tests-DXCustomCallout-ObjC"; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ 004A2FB18727F047DD3AF3CD /* DXAnnotationSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DXAnnotationSettings.h; sourceTree = ""; }; 0806C2AA905E679F08F51F08 /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-dummy.m"; sourceTree = ""; }; 15845988114481833F9FC854 /* Pods-Tests-DXCustomCallout-ObjC.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests-DXCustomCallout-ObjC.xcconfig"; path = "../Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC.xcconfig"; sourceTree = ""; }; 1AA26271218B3A925F3DA144 /* Pods-Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests.debug.xcconfig"; sourceTree = ""; }; 1C861F75C5FAD56C21B3A49F /* Pods-Tests-DXCustomCallout-ObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Pods-Tests-DXCustomCallout-ObjC-dummy.m"; path = "../Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC-dummy.m"; sourceTree = ""; }; 1E5B78CE101466C7907507B7 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; 1F9D3CB94321C7C6F43E1944 /* DXAnnotationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DXAnnotationView.m; sourceTree = ""; }; 2AC3F0017D8B1BE3F7A20827 /* Pods-DXCustomCallout-ObjC-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DXCustomCallout-ObjC-acknowledgements.markdown"; sourceTree = ""; }; 33BBF57BD2C9545C8855D7E6 /* Pods-Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-dummy.m"; sourceTree = ""; }; 395E7AA208620E168846F2A6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 3F2DFFE7B25F33A5E84757F3 /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/MapKit.framework; sourceTree = DEVELOPER_DIR; }; 4CB7A1A0923FA9C3BAC2516E /* Pods-Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-acknowledgements.plist"; sourceTree = ""; }; 62001ED8D9EAB71A18E7E192 /* Pods-DXCustomCallout-ObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DXCustomCallout-ObjC.release.xcconfig"; sourceTree = ""; }; 6F844355A79980A323632F3F /* Pods-DXCustomCallout-ObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DXCustomCallout-ObjC-dummy.m"; sourceTree = ""; }; 7C9FB75341B2FC06C43C41F8 /* DXAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DXAnnotationView.h; sourceTree = ""; }; 83C3852CA6DE4CF79773D654 /* Pods-DXCustomCallout-ObjC-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DXCustomCallout-ObjC-environment.h"; sourceTree = ""; }; 84263011708CD1FF214FF470 /* libPods-DXCustomCallout-ObjC-DXCustomCallout-ObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DXCustomCallout-ObjC-DXCustomCallout-ObjC.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 854B94EE66D91B2D43BB64F0 /* Pods-Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-acknowledgements.markdown"; sourceTree = ""; }; 8AD10D2F70E5D2F2B68868C3 /* Pods-Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-resources.sh"; sourceTree = ""; }; 9811E200F7DD48F86B0C81FF /* libPods-DXCustomCallout-ObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DXCustomCallout-ObjC.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 98C0879114DD60599CC3152E /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-Private.xcconfig"; sourceTree = ""; }; A68D3057958D7760200E7702 /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B28B8B79EF96C67D127BDAE5 /* libPods-Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; B52C5427929FBF6AF5558B26 /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC.xcconfig"; sourceTree = ""; }; B755852E2704BF69F110D65F /* DXAnnotationSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DXAnnotationSettings.m; sourceTree = ""; }; B851B2F7022F9A01791F75F3 /* Pods-DXCustomCallout-ObjC-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DXCustomCallout-ObjC-acknowledgements.plist"; sourceTree = ""; }; BC974F510F9FB3C6D1600B3D /* Pods-DXCustomCallout-ObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DXCustomCallout-ObjC.debug.xcconfig"; sourceTree = ""; }; CD1F2AAAD35877D016530C61 /* Pods-Tests-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-environment.h"; sourceTree = ""; }; D9BF72BD17A3FC179AE6A656 /* Pods-Tests-DXCustomCallout-ObjC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Pods-Tests-DXCustomCallout-ObjC-prefix.pch"; path = "../Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC-prefix.pch"; sourceTree = ""; }; DAFB8846F18BDBF8537DA924 /* Pods-Tests-DXCustomCallout-ObjC-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests-DXCustomCallout-ObjC-Private.xcconfig"; path = "../Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC-Private.xcconfig"; sourceTree = ""; }; EE6DD276DE1B88F9DA699ADA /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-prefix.pch"; sourceTree = ""; }; EFD6121F5AA3EE6869608131 /* libPods-Tests-DXCustomCallout-ObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Tests-DXCustomCallout-ObjC.a"; sourceTree = BUILT_PRODUCTS_DIR; }; FC36B60D1CE49CF424624E98 /* Pods-DXCustomCallout-ObjC-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-DXCustomCallout-ObjC-resources.sh"; sourceTree = ""; }; FF53A72E8E0FF68C7CC1F221 /* Pods-Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests.release.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ 0C9B1961BD0692C003677100 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( F2861901E2E4CFA6A60FA604 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; 155FE3ED6B401F50E197D9C3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( 9CE8E5F5C682D75F26ED492D /* Foundation.framework in Frameworks */, B50B716C82D3DE9729432649 /* MapKit.framework in Frameworks */, 629CFAF19F4D46C14538FA35 /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; 7DE9E1FAE67711E03735FF7F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( 194B2C52A0373E657368566B /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; 827B2B866E3F1029AAF28084 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( FC3CF1948CF782C54E7B087F /* Foundation.framework in Frameworks */, 7352B106350C06043CD48EA1 /* MapKit.framework in Frameworks */, C37599620CFA742604C4B99C /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ 0657996FE2F560C1B9C10A39 /* iOS */ = { isa = PBXGroup; children = ( 395E7AA208620E168846F2A6 /* Foundation.framework */, 3F2DFFE7B25F33A5E84757F3 /* MapKit.framework */, 1E5B78CE101466C7907507B7 /* UIKit.framework */, ); name = iOS; sourceTree = ""; }; 229C531A5A1BAE104816D071 /* Development Pods */ = { isa = PBXGroup; children = ( 5AFEB1BB0AC3B2E951002957 /* DXCustomCallout-ObjC */, ); name = "Development Pods"; sourceTree = ""; }; 3B8DCF41058A7789E884E9FE /* Pod */ = { isa = PBXGroup; children = ( F39EE7F39B10CEBB4FB5DDEE /* Classes */, ); path = Pod; sourceTree = ""; }; 5978D2B9DECEA64678955B5B /* Products */ = { isa = PBXGroup; children = ( 9811E200F7DD48F86B0C81FF /* libPods-DXCustomCallout-ObjC.a */, 84263011708CD1FF214FF470 /* libPods-DXCustomCallout-ObjC-DXCustomCallout-ObjC.a */, B28B8B79EF96C67D127BDAE5 /* libPods-Tests.a */, EFD6121F5AA3EE6869608131 /* libPods-Tests-DXCustomCallout-ObjC.a */, ); name = Products; sourceTree = ""; }; 5AFEB1BB0AC3B2E951002957 /* DXCustomCallout-ObjC */ = { isa = PBXGroup; children = ( 3B8DCF41058A7789E884E9FE /* Pod */, ED48384E324A904DE0A3633B /* Support Files */, ); name = "DXCustomCallout-ObjC"; path = ../..; sourceTree = ""; }; 8D7B8A4D1A3EE1288C58A8AC /* Pods-Tests */ = { isa = PBXGroup; children = ( 854B94EE66D91B2D43BB64F0 /* Pods-Tests-acknowledgements.markdown */, 4CB7A1A0923FA9C3BAC2516E /* Pods-Tests-acknowledgements.plist */, 33BBF57BD2C9545C8855D7E6 /* Pods-Tests-dummy.m */, CD1F2AAAD35877D016530C61 /* Pods-Tests-environment.h */, 8AD10D2F70E5D2F2B68868C3 /* Pods-Tests-resources.sh */, 1AA26271218B3A925F3DA144 /* Pods-Tests.debug.xcconfig */, FF53A72E8E0FF68C7CC1F221 /* Pods-Tests.release.xcconfig */, ); name = "Pods-Tests"; path = "Target Support Files/Pods-Tests"; sourceTree = ""; }; 942DFF22ACAAB0EAABDD17AB /* Pods-DXCustomCallout-ObjC */ = { isa = PBXGroup; children = ( 2AC3F0017D8B1BE3F7A20827 /* Pods-DXCustomCallout-ObjC-acknowledgements.markdown */, B851B2F7022F9A01791F75F3 /* Pods-DXCustomCallout-ObjC-acknowledgements.plist */, 6F844355A79980A323632F3F /* Pods-DXCustomCallout-ObjC-dummy.m */, 83C3852CA6DE4CF79773D654 /* Pods-DXCustomCallout-ObjC-environment.h */, FC36B60D1CE49CF424624E98 /* Pods-DXCustomCallout-ObjC-resources.sh */, BC974F510F9FB3C6D1600B3D /* Pods-DXCustomCallout-ObjC.debug.xcconfig */, 62001ED8D9EAB71A18E7E192 /* Pods-DXCustomCallout-ObjC.release.xcconfig */, ); name = "Pods-DXCustomCallout-ObjC"; path = "Target Support Files/Pods-DXCustomCallout-ObjC"; sourceTree = ""; }; A4EFBE202949C827710C77F1 = { isa = PBXGroup; children = ( A68D3057958D7760200E7702 /* Podfile */, 229C531A5A1BAE104816D071 /* Development Pods */, D9B573BD09886308DDE976BB /* Frameworks */, 5978D2B9DECEA64678955B5B /* Products */, E491F62B0FF086FD7E623DF9 /* Targets Support Files */, ); sourceTree = ""; }; D9B573BD09886308DDE976BB /* Frameworks */ = { isa = PBXGroup; children = ( 0657996FE2F560C1B9C10A39 /* iOS */, ); name = Frameworks; sourceTree = ""; }; E491F62B0FF086FD7E623DF9 /* Targets Support Files */ = { isa = PBXGroup; children = ( 942DFF22ACAAB0EAABDD17AB /* Pods-DXCustomCallout-ObjC */, 8D7B8A4D1A3EE1288C58A8AC /* Pods-Tests */, ); name = "Targets Support Files"; sourceTree = ""; }; ED48384E324A904DE0A3633B /* Support Files */ = { isa = PBXGroup; children = ( B52C5427929FBF6AF5558B26 /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC.xcconfig */, 98C0879114DD60599CC3152E /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-Private.xcconfig */, 0806C2AA905E679F08F51F08 /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-dummy.m */, EE6DD276DE1B88F9DA699ADA /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-prefix.pch */, 15845988114481833F9FC854 /* Pods-Tests-DXCustomCallout-ObjC.xcconfig */, DAFB8846F18BDBF8537DA924 /* Pods-Tests-DXCustomCallout-ObjC-Private.xcconfig */, 1C861F75C5FAD56C21B3A49F /* Pods-Tests-DXCustomCallout-ObjC-dummy.m */, D9BF72BD17A3FC179AE6A656 /* Pods-Tests-DXCustomCallout-ObjC-prefix.pch */, ); name = "Support Files"; path = "Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC"; sourceTree = ""; }; F39EE7F39B10CEBB4FB5DDEE /* Classes */ = { isa = PBXGroup; children = ( 004A2FB18727F047DD3AF3CD /* DXAnnotationSettings.h */, B755852E2704BF69F110D65F /* DXAnnotationSettings.m */, 7C9FB75341B2FC06C43C41F8 /* DXAnnotationView.h */, 1F9D3CB94321C7C6F43E1944 /* DXAnnotationView.m */, ); path = Classes; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ D0BD800EFD2BF34927E923A6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( 23903084152BE1ED6A54EFCB /* DXAnnotationSettings.h in Headers */, 4F50C7465DD0638A3CD4E0C6 /* DXAnnotationView.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; EA730A619E74017A830F3BE0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( 1A5B3F3670EF44BFB4D28994 /* DXAnnotationSettings.h in Headers */, 59EFFB5B6B77E45965288B43 /* DXAnnotationView.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ 1B739FBCC6BBE765E83178B5 /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC */ = { isa = PBXNativeTarget; buildConfigurationList = E9C7D8EDB8C43FD853FAAADB /* Build configuration list for PBXNativeTarget "Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC" */; buildPhases = ( 986EF594B474D98F54873DF2 /* Sources */, 827B2B866E3F1029AAF28084 /* Frameworks */, EA730A619E74017A830F3BE0 /* Headers */, ); buildRules = ( ); dependencies = ( ); name = "Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC"; productName = "Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC"; productReference = 84263011708CD1FF214FF470 /* libPods-DXCustomCallout-ObjC-DXCustomCallout-ObjC.a */; productType = "com.apple.product-type.library.static"; }; A16A2BF9CDB37C00D12FF246 /* Pods-Tests-DXCustomCallout-ObjC */ = { isa = PBXNativeTarget; buildConfigurationList = 923ED8FB6CFB8DF05BA1BA13 /* Build configuration list for PBXNativeTarget "Pods-Tests-DXCustomCallout-ObjC" */; buildPhases = ( EA207480DC81C03AC80AC00A /* Sources */, 155FE3ED6B401F50E197D9C3 /* Frameworks */, D0BD800EFD2BF34927E923A6 /* Headers */, ); buildRules = ( ); dependencies = ( ); name = "Pods-Tests-DXCustomCallout-ObjC"; productName = "Pods-Tests-DXCustomCallout-ObjC"; productReference = EFD6121F5AA3EE6869608131 /* libPods-Tests-DXCustomCallout-ObjC.a */; productType = "com.apple.product-type.library.static"; }; B325C908822D71D9999C188D /* Pods-DXCustomCallout-ObjC */ = { isa = PBXNativeTarget; buildConfigurationList = 827E4416B6CFDE00176EAA39 /* Build configuration list for PBXNativeTarget "Pods-DXCustomCallout-ObjC" */; buildPhases = ( DE84EA5D06573519DBAA78DB /* Sources */, 7DE9E1FAE67711E03735FF7F /* Frameworks */, ); buildRules = ( ); dependencies = ( 59A14DB1989A4B0A1BACA64C /* PBXTargetDependency */, ); name = "Pods-DXCustomCallout-ObjC"; productName = "Pods-DXCustomCallout-ObjC"; productReference = 9811E200F7DD48F86B0C81FF /* libPods-DXCustomCallout-ObjC.a */; productType = "com.apple.product-type.library.static"; }; D766E4EBC5C8FF2E5661181F /* Pods-Tests */ = { isa = PBXNativeTarget; buildConfigurationList = 75CFCDBFE676BE3DF4301967 /* Build configuration list for PBXNativeTarget "Pods-Tests" */; buildPhases = ( ADD0F8A676851234BEF99207 /* Sources */, 0C9B1961BD0692C003677100 /* Frameworks */, ); buildRules = ( ); dependencies = ( 65743EDE38F124DEC4D16A01 /* PBXTargetDependency */, ); name = "Pods-Tests"; productName = "Pods-Tests"; productReference = B28B8B79EF96C67D127BDAE5 /* libPods-Tests.a */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ E102808068AE98DCBDB66504 /* Project object */ = { isa = PBXProject; attributes = { LastUpgradeCheck = 0510; }; buildConfigurationList = A826741E5EDF19D6778EC7A7 /* Build configuration list for PBXProject "Pods" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( en, ); mainGroup = A4EFBE202949C827710C77F1; productRefGroup = 5978D2B9DECEA64678955B5B /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( B325C908822D71D9999C188D /* Pods-DXCustomCallout-ObjC */, 1B739FBCC6BBE765E83178B5 /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC */, D766E4EBC5C8FF2E5661181F /* Pods-Tests */, A16A2BF9CDB37C00D12FF246 /* Pods-Tests-DXCustomCallout-ObjC */, ); }; /* End PBXProject section */ /* Begin PBXSourcesBuildPhase section */ 986EF594B474D98F54873DF2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( FC00AB4B96EB7401B3AD72DF /* DXAnnotationSettings.m in Sources */, AF74D60CE6882FA5E28173EA /* DXAnnotationView.m in Sources */, 4FE5BB317D796D0B658433CB /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; ADD0F8A676851234BEF99207 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 13FDEEAC501E937B14EF5467 /* Pods-Tests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; DE84EA5D06573519DBAA78DB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 9D9B86646EECB30B4F78A184 /* Pods-DXCustomCallout-ObjC-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; EA207480DC81C03AC80AC00A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( E76B5A455542254DEF6476CF /* DXAnnotationSettings.m in Sources */, ECA7E3D64834B8F824848677 /* DXAnnotationView.m in Sources */, BA462E9E19C91D44B09B2F12 /* Pods-Tests-DXCustomCallout-ObjC-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ 59A14DB1989A4B0A1BACA64C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC"; target = 1B739FBCC6BBE765E83178B5 /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC */; targetProxy = 3607AEA744F4CD29655F2517 /* PBXContainerItemProxy */; }; 65743EDE38F124DEC4D16A01 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Pods-Tests-DXCustomCallout-ObjC"; target = A16A2BF9CDB37C00D12FF246 /* Pods-Tests-DXCustomCallout-ObjC */; targetProxy = E5C258B55BF0FA45E90F963D /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ 276F5F343D819A3CEE41CF6B /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = DAFB8846F18BDBF8537DA924 /* Pods-Tests-DXCustomCallout-ObjC-Private.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_PREFIX_HEADER = "Target Support Files/Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 7.1; MTL_ENABLE_DEBUG_INFO = YES; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; }; name = Debug; }; 3523A969F256CEC90C6B98E9 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = FF53A72E8E0FF68C7CC1F221 /* Pods-Tests.release.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; IPHONEOS_DEPLOYMENT_TARGET = 7.1; MTL_ENABLE_DEBUG_INFO = NO; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; }; name = Release; }; 35C7553D37455F0BDB87EE6E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = YES; ENABLE_NS_ASSERTIONS = NO; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1"; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 7.1; STRIP_INSTALLED_PRODUCT = NO; SYMROOT = "${SRCROOT}/../build"; VALIDATE_PRODUCT = YES; }; name = Release; }; 59331E1F47736C256D5F0C82 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = BC974F510F9FB3C6D1600B3D /* Pods-DXCustomCallout-ObjC.debug.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; IPHONEOS_DEPLOYMENT_TARGET = 7.1; MTL_ENABLE_DEBUG_INFO = YES; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; }; name = Debug; }; 6E919B6FEDA72F61EBDF00E9 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 98C0879114DD60599CC3152E /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-Private.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_PREFIX_HEADER = "Target Support Files/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 7.1; MTL_ENABLE_DEBUG_INFO = NO; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; }; name = Release; }; 70EB238D72DA631E59DB9A93 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 1AA26271218B3A925F3DA144 /* Pods-Tests.debug.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; IPHONEOS_DEPLOYMENT_TARGET = 7.1; MTL_ENABLE_DEBUG_INFO = YES; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; }; name = Debug; }; 78D6803F7F49B380135DFA31 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "$(inherited)", ); GCC_SYMBOLS_PRIVATE_EXTERN = NO; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 7.1; ONLY_ACTIVE_ARCH = YES; STRIP_INSTALLED_PRODUCT = NO; SYMROOT = "${SRCROOT}/../build"; }; name = Debug; }; 90DC9B6EB137A9709798B2D6 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 62001ED8D9EAB71A18E7E192 /* Pods-DXCustomCallout-ObjC.release.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; IPHONEOS_DEPLOYMENT_TARGET = 7.1; MTL_ENABLE_DEBUG_INFO = NO; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; }; name = Release; }; 919EA23D9873D5007293742C /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = DAFB8846F18BDBF8537DA924 /* Pods-Tests-DXCustomCallout-ObjC-Private.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_PREFIX_HEADER = "Target Support Files/Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 7.1; MTL_ENABLE_DEBUG_INFO = NO; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; }; name = Release; }; 940DE6649476624004E5E0CC /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 98C0879114DD60599CC3152E /* Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-Private.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_PREFIX_HEADER = "Target Support Files/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 7.1; MTL_ENABLE_DEBUG_INFO = YES; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; }; name = Debug; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ 75CFCDBFE676BE3DF4301967 /* Build configuration list for PBXNativeTarget "Pods-Tests" */ = { isa = XCConfigurationList; buildConfigurations = ( 70EB238D72DA631E59DB9A93 /* Debug */, 3523A969F256CEC90C6B98E9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 827E4416B6CFDE00176EAA39 /* Build configuration list for PBXNativeTarget "Pods-DXCustomCallout-ObjC" */ = { isa = XCConfigurationList; buildConfigurations = ( 59331E1F47736C256D5F0C82 /* Debug */, 90DC9B6EB137A9709798B2D6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 923ED8FB6CFB8DF05BA1BA13 /* Build configuration list for PBXNativeTarget "Pods-Tests-DXCustomCallout-ObjC" */ = { isa = XCConfigurationList; buildConfigurations = ( 276F5F343D819A3CEE41CF6B /* Debug */, 919EA23D9873D5007293742C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; A826741E5EDF19D6778EC7A7 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( 78D6803F7F49B380135DFA31 /* Debug */, 35C7553D37455F0BDB87EE6E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; E9C7D8EDB8C43FD853FAAADB /* Build configuration list for PBXNativeTarget "Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC" */ = { isa = XCConfigurationList; buildConfigurations = ( 940DE6649476624004E5E0CC /* Debug */, 6E919B6FEDA72F61EBDF00E9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; rootObject = E102808068AE98DCBDB66504 /* Project object */; } ================================================ FILE: Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-acknowledgements.markdown ================================================ # Acknowledgements This application makes use of the following third party libraries: ## DXCustomCallout-ObjC Copyright (c) 2015 s3lvin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Generated by CocoaPods - http://cocoapods.org ================================================ FILE: Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-acknowledgements.plist ================================================ PreferenceSpecifiers FooterText This application makes use of the following third party libraries: Title Acknowledgements Type PSGroupSpecifier FooterText Copyright (c) 2015 s3lvin <mariaselvin@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Title DXCustomCallout-ObjC Type PSGroupSpecifier FooterText Generated by CocoaPods - http://cocoapods.org Title Type PSGroupSpecifier StringsTable Acknowledgements Title Acknowledgements ================================================ FILE: Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-dummy.m ================================================ #import @interface PodsDummy_Pods_DXCustomCallout_ObjC : NSObject @end @implementation PodsDummy_Pods_DXCustomCallout_ObjC @end ================================================ FILE: Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-environment.h ================================================ // To check if a library is compiled with CocoaPods you // can use the `COCOAPODS` macro definition which is // defined in the xcconfigs so it is available in // headers also when they are imported in the client // project. // DXCustomCallout-ObjC #define COCOAPODS_POD_AVAILABLE_DXCustomCallout_ObjC #define COCOAPODS_VERSION_MAJOR_DXCustomCallout_ObjC 0 #define COCOAPODS_VERSION_MINOR_DXCustomCallout_ObjC 1 #define COCOAPODS_VERSION_PATCH_DXCustomCallout_ObjC 0 ================================================ FILE: Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-resources.sh ================================================ #!/bin/sh set -e mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt > "$RESOURCES_TO_COPY" XCASSET_FILES="" install_resource() { case $1 in *.storyboard) echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" ;; *.xib) echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" ;; *.framework) echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" ;; *.xcdatamodel) echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" ;; *.xcdatamodeld) echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" ;; *.xcmappingmodel) echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" ;; *.xcassets) XCASSET_FILES="$XCASSET_FILES '${PODS_ROOT}/$1'" ;; /*) echo "$1" echo "$1" >> "$RESOURCES_TO_COPY" ;; *) echo "${PODS_ROOT}/$1" echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" ;; esac } rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" if [[ "${ACTION}" == "install" ]]; then rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" fi rm -f "$RESOURCES_TO_COPY" if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] then case "${TARGETED_DEVICE_FAMILY}" in 1,2) TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" ;; 1) TARGET_DEVICE_ARGS="--target-device iphone" ;; 2) TARGET_DEVICE_ARGS="--target-device ipad" ;; *) TARGET_DEVICE_ARGS="--target-device mac" ;; esac while read line; do XCASSET_FILES="$XCASSET_FILES '$line'"; done <<<$(find "$PWD" -name "*.xcassets" | egrep -v "^$PODS_ROOT") echo $XCASSET_FILES | xargs actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" fi ================================================ FILE: Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC.debug.xcconfig ================================================ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DXCustomCallout-ObjC" OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/DXCustomCallout-ObjC" OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC" -framework "MapKit" -framework "UIKit" OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) PODS_ROOT = ${SRCROOT}/Pods ================================================ FILE: Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC.release.xcconfig ================================================ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DXCustomCallout-ObjC" OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/DXCustomCallout-ObjC" OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC" -framework "MapKit" -framework "UIKit" OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) PODS_ROOT = ${SRCROOT}/Pods ================================================ FILE: Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-Private.xcconfig ================================================ #include "Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/DXCustomCallout-ObjC" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DXCustomCallout-ObjC" OTHER_LDFLAGS = ${PODS_DXCUSTOMCALLOUT_OBJC_DXCUSTOMCALLOUT_OBJC_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} SKIP_INSTALL = YES ================================================ FILE: Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-dummy.m ================================================ #import @interface PodsDummy_Pods_DXCustomCallout_ObjC_DXCustomCallout_ObjC : NSObject @end @implementation PodsDummy_Pods_DXCustomCallout_ObjC_DXCustomCallout_ObjC @end ================================================ FILE: Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-prefix.pch ================================================ #ifdef __OBJC__ #import #endif #import "Pods-DXCustomCallout-ObjC-environment.h" ================================================ FILE: Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC.xcconfig ================================================ PODS_DXCUSTOMCALLOUT_OBJC_DXCUSTOMCALLOUT_OBJC_OTHER_LDFLAGS = -framework "MapKit" -framework "UIKit" ================================================ FILE: Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown ================================================ # Acknowledgements This application makes use of the following third party libraries: ## DXCustomCallout-ObjC Copyright (c) 2015 s3lvin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Generated by CocoaPods - http://cocoapods.org ================================================ FILE: Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist ================================================ PreferenceSpecifiers FooterText This application makes use of the following third party libraries: Title Acknowledgements Type PSGroupSpecifier FooterText Copyright (c) 2015 s3lvin <mariaselvin@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Title DXCustomCallout-ObjC Type PSGroupSpecifier FooterText Generated by CocoaPods - http://cocoapods.org Title Type PSGroupSpecifier StringsTable Acknowledgements Title Acknowledgements ================================================ FILE: Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m ================================================ #import @interface PodsDummy_Pods_Tests : NSObject @end @implementation PodsDummy_Pods_Tests @end ================================================ FILE: Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h ================================================ // To check if a library is compiled with CocoaPods you // can use the `COCOAPODS` macro definition which is // defined in the xcconfigs so it is available in // headers also when they are imported in the client // project. // DXCustomCallout-ObjC #define COCOAPODS_POD_AVAILABLE_DXCustomCallout_ObjC #define COCOAPODS_VERSION_MAJOR_DXCustomCallout_ObjC 0 #define COCOAPODS_VERSION_MINOR_DXCustomCallout_ObjC 1 #define COCOAPODS_VERSION_PATCH_DXCustomCallout_ObjC 0 ================================================ FILE: Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh ================================================ #!/bin/sh set -e mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt > "$RESOURCES_TO_COPY" XCASSET_FILES="" install_resource() { case $1 in *.storyboard) echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" ;; *.xib) echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" ;; *.framework) echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" ;; *.xcdatamodel) echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" ;; *.xcdatamodeld) echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" ;; *.xcmappingmodel) echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" ;; *.xcassets) XCASSET_FILES="$XCASSET_FILES '${PODS_ROOT}/$1'" ;; /*) echo "$1" echo "$1" >> "$RESOURCES_TO_COPY" ;; *) echo "${PODS_ROOT}/$1" echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" ;; esac } rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" if [[ "${ACTION}" == "install" ]]; then rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" fi rm -f "$RESOURCES_TO_COPY" if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] then case "${TARGETED_DEVICE_FAMILY}" in 1,2) TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" ;; 1) TARGET_DEVICE_ARGS="--target-device iphone" ;; 2) TARGET_DEVICE_ARGS="--target-device ipad" ;; *) TARGET_DEVICE_ARGS="--target-device mac" ;; esac while read line; do XCASSET_FILES="$XCASSET_FILES '$line'"; done <<<$(find "$PWD" -name "*.xcassets" | egrep -v "^$PODS_ROOT") echo $XCASSET_FILES | xargs actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" fi ================================================ FILE: Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig ================================================ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DXCustomCallout-ObjC" OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/DXCustomCallout-ObjC" OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-Tests-DXCustomCallout-ObjC" -framework "MapKit" -framework "UIKit" OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) PODS_ROOT = ${SRCROOT}/Pods ================================================ FILE: Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig ================================================ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DXCustomCallout-ObjC" OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/DXCustomCallout-ObjC" OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-Tests-DXCustomCallout-ObjC" -framework "MapKit" -framework "UIKit" OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) PODS_ROOT = ${SRCROOT}/Pods ================================================ FILE: Example/Pods/Target Support Files/Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC-Private.xcconfig ================================================ #include "Pods-Tests-DXCustomCallout-ObjC.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/DXCustomCallout-ObjC" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DXCustomCallout-ObjC" OTHER_LDFLAGS = ${PODS_TESTS_DXCUSTOMCALLOUT_OBJC_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} SKIP_INSTALL = YES ================================================ FILE: Example/Pods/Target Support Files/Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC-dummy.m ================================================ #import @interface PodsDummy_Pods_Tests_DXCustomCallout_ObjC : NSObject @end @implementation PodsDummy_Pods_Tests_DXCustomCallout_ObjC @end ================================================ FILE: Example/Pods/Target Support Files/Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC-prefix.pch ================================================ #ifdef __OBJC__ #import #endif #import "Pods-Tests-environment.h" ================================================ FILE: Example/Pods/Target Support Files/Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC.xcconfig ================================================ PODS_TESTS_DXCUSTOMCALLOUT_OBJC_OTHER_LDFLAGS = -framework "MapKit" -framework "UIKit" ================================================ FILE: Example/Tests/Tests-Info.plist ================================================ CFBundleDevelopmentRegion en CFBundleExecutable ${EXECUTABLE_NAME} CFBundleIdentifier org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier} CFBundleInfoDictionaryVersion 6.0 CFBundlePackageType BNDL CFBundleShortVersionString 1.0 CFBundleSignature ???? CFBundleVersion 1 ================================================ FILE: Example/Tests/Tests-Prefix.pch ================================================ // // Prefix header // // The contents of this file are implicitly included at the beginning of every test case source file. // #ifdef __OBJC__ #endif ================================================ FILE: Example/Tests/Tests.m ================================================ // // DXCustomCallout-ObjCTests.m // DXCustomCallout-ObjCTests // // Created by s3lvin on 04/13/2015. // Copyright (c) 2014 s3lvin. All rights reserved. // #import #import #import #import #import @interface DXAnnotation : NSObject @property(nonatomic, assign) CLLocationCoordinate2D coordinate; @end @interface DXAnnotationViewTests : XCTestCase @property(nonatomic, strong) DXAnnotation *annotation; @end @implementation DXAnnotationViewTests - (void)setUp { [super setUp]; self.annotation = [DXAnnotation new]; self.annotation.coordinate = CLLocationCoordinate2DMake(12.9667, 77.5667); } - (void)tearDown { self.annotation = nil; [super tearDown]; } - (void)testAlloc { // This is an example of a functional test case. DXAnnotationView *annotationView = [[DXAnnotationView alloc] initWithAnnotation:self.annotation reuseIdentifier:NSStringFromClass([DXAnnotationView class]) pinView:[UIView new] calloutView:[UIView new] settings:[DXAnnotationSettings defaultSettings]]; XCTAssert(annotationView != nil, @"Allocation Pass"); } @end ================================================ FILE: Example/Tests/en.lproj/InfoPlist.strings ================================================ /* Localized versions of Info.plist keys */ ================================================ FILE: LICENSE ================================================ Copyright (c) 2015 s3lvin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: Pod/Assets/.gitkeep ================================================ ================================================ FILE: Pod/Classes/.gitkeep ================================================ ================================================ FILE: Pod/Classes/DXAnnotationSettings.h ================================================ // // DXAnnotationSettings.h // CustomCallout // // Created by Selvin on 12/04/15. // Copyright (c) 2015 S3lvin. All rights reserved. // #import #import typedef NS_ENUM(NSUInteger, DXCalloutAnimation) { DXCalloutAnimationNone, DXCalloutAnimationFadeIn, DXCalloutAnimationZoomIn }; @interface DXAnnotationSettings : NSObject @property(nonatomic, assign) CGFloat calloutOffset; @property(nonatomic, assign) BOOL shouldRoundifyCallout; @property(nonatomic, assign) CGFloat calloutCornerRadius; @property(nonatomic, assign) BOOL shouldAddCalloutBorder; @property(nonatomic, strong) UIColor *calloutBorderColor; @property(nonatomic, assign) CGFloat calloutBorderWidth; @property(nonatomic, assign) DXCalloutAnimation animationType; @property(nonatomic, assign) NSTimeInterval animationDuration; + (instancetype)defaultSettings; @end ================================================ FILE: Pod/Classes/DXAnnotationSettings.m ================================================ // // DXAnnotationSettings.m // CustomCallout // // Created by Selvin on 12/04/15. // Copyright (c) 2015 S3lvin. All rights reserved. // #import "DXAnnotationSettings.h" @implementation DXAnnotationSettings + (instancetype)defaultSettings { DXAnnotationSettings *newSettings = [[super alloc] init]; if (newSettings) { newSettings.calloutOffset = 10.0f; newSettings.shouldRoundifyCallout = YES; newSettings.calloutCornerRadius = 5.0f; newSettings.shouldAddCalloutBorder = YES; newSettings.calloutBorderColor = [UIColor colorWithRed:0.329 green:0.565 blue:0.616 alpha:1.000]; newSettings.calloutBorderWidth = 2.0; newSettings.animationType = DXCalloutAnimationZoomIn; newSettings.animationDuration = 0.25; } return newSettings; } @end ================================================ FILE: Pod/Classes/DXAnnotationView.h ================================================ // // DXAnnotationView.h // CustomCallout // // Created by Selvin on 05/04/15. // Copyright (c) 2015 S3lvin. All rights reserved. // #import @class DXAnnotationSettings; @interface DXAnnotationView : MKAnnotationView @property(nonatomic, strong) UIView *pinView; @property(nonatomic, strong) UIView *calloutView; - (instancetype)initWithAnnotation:(id)annotation reuseIdentifier:(NSString *)reuseIdentifier pinView:(UIView *)pinView calloutView:(UIView *)calloutView settings:(DXAnnotationSettings *)settings; - (void)hideCalloutView; - (void)showCalloutView; @end ================================================ FILE: Pod/Classes/DXAnnotationView.m ================================================ // // DXAnnotationView.m // CustomCallout // // Created by Selvin on 05/04/15. // Copyright (c) 2015 S3lvin. All rights reserved. // #import "DXAnnotationView.h" #import "DXAnnotationSettings.h" @interface DXAnnotationView () { BOOL _hasCalloutView; } @property(nonatomic, strong) DXAnnotationSettings *settings; @end @implementation DXAnnotationView - (instancetype)initWithAnnotation:(id)annotation reuseIdentifier:(NSString *)reuseIdentifier pinView:(UIView *)pinView calloutView:(UIView *)calloutView settings:(DXAnnotationSettings *)settings { NSAssert(pinView != nil, @"Pinview can not be nil"); self = [super initWithAnnotation:annotation reuseIdentifier:reuseIdentifier]; if (self) { self.clipsToBounds = NO; [self validateSettings:settings]; _hasCalloutView = (calloutView) ? YES : NO; self.canShowCallout = NO; self.pinView = pinView; self.pinView.userInteractionEnabled = YES; self.calloutView = calloutView; self.calloutView.hidden = YES; [self addSubview:self.pinView]; [self addSubview:self.calloutView]; self.frame = [self calculateFrame]; if (_hasCalloutView) { if (self.settings.shouldAddCalloutBorder) { [self addCalloutBorder]; } if (self.settings.shouldRoundifyCallout) { [self roundifyCallout]; } } [self positionSubviews]; } return self; } - (CGRect)calculateFrame { return self.pinView.bounds; } - (void)positionSubviews { self.pinView.center = self.center; if (_hasCalloutView) { CGRect frame = self.calloutView.frame; frame.origin.y = -frame.size.height - self.settings.calloutOffset; frame.origin.x = (self.frame.size.width - frame.size.width) / 2.0; self.calloutView.frame = frame; } } - (void)roundifyCallout { self.calloutView.layer.cornerRadius = self.settings.calloutCornerRadius; } - (void)addCalloutBorder { self.calloutView.layer.borderWidth = self.settings.calloutBorderWidth; self.calloutView.layer.borderColor = self.settings.calloutBorderColor.CGColor; } - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { if (_hasCalloutView) { UITouch *touch = [touches anyObject]; // toggle visibility if (touch.view == self.pinView) { if (self.calloutView.isHidden) { [self showCalloutView]; } else { [self hideCalloutView]; } } else if (touch.view == self.calloutView) { [self showCalloutView]; } else { [self hideCalloutView]; } } } - (void)hideCalloutView { if (_hasCalloutView) { if (!self.calloutView.isHidden) { switch (self.settings.animationType) { case DXCalloutAnimationNone: { self.calloutView.hidden = YES; } break; case DXCalloutAnimationZoomIn: { self.calloutView.transform = CGAffineTransformMakeScale(1.0, 1.0); [UIView animateWithDuration:self.settings.animationDuration animations:^{ self.calloutView.transform = CGAffineTransformMakeScale(0.25, 0.25); } completion:^(BOOL finished) { self.calloutView.hidden = YES; }]; } break; case DXCalloutAnimationFadeIn: { self.calloutView.alpha = 1.0; [UIView animateWithDuration:self.settings.animationDuration animations:^{ self.calloutView.alpha = 0.0; } completion:^(BOOL finished) { self.calloutView.hidden = YES; }]; } break; default: { self.calloutView.hidden = YES; } break; } } } } - (void)showCalloutView { if (_hasCalloutView) { if (self.calloutView.isHidden) { switch (self.settings.animationType) { case DXCalloutAnimationNone: { self.calloutView.hidden = NO; } break; case DXCalloutAnimationZoomIn: { self.calloutView.transform = CGAffineTransformMakeScale(0.025, 0.25); self.calloutView.hidden = NO; [UIView animateWithDuration:self.settings.animationDuration animations:^{ self.calloutView.transform = CGAffineTransformMakeScale(1.0, 1.0); } completion:nil]; } break; case DXCalloutAnimationFadeIn: { self.calloutView.alpha = 0.0; self.calloutView.hidden = NO; [UIView animateWithDuration:self.settings.animationDuration animations:^{ self.calloutView.alpha = 1.0; } completion:nil]; } break; default: { self.calloutView.hidden = NO; } break; } } } } #pragma mark - validate settings - - (void)validateSettings:(DXAnnotationSettings *)settings { NSAssert(settings.calloutOffset >= 5.0, @"settings.calloutOffset should be atleast 5.0"); if (settings.shouldRoundifyCallout) { NSAssert(settings.calloutCornerRadius >= 3.0, @"settings.calloutCornerRadius should be atleast 3.0"); } if (settings.shouldAddCalloutBorder) { NSAssert(settings.calloutBorderColor != nil, @"settings.calloutBorderColor can not be nil"); NSAssert(settings.calloutBorderWidth >= 1.0, @"settings.calloutBorderWidth should be atleast 1.0"); } if (settings.animationType != DXCalloutAnimationNone) { NSAssert(settings.animationDuration > 0.0, @"settings.animationDuration should be greater than zero"); } self.settings = settings; } - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event { UIView *hitView = [super hitTest:point withEvent:event]; if (hitView == self) return nil; return hitView; } - (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event { BOOL isCallout = (CGRectContainsPoint(self.calloutView.frame, point)); BOOL isPin = (CGRectContainsPoint(self.pinView.frame, point)); return isCallout || isPin; } #pragma mark - PinView - (void)setPinView:(UIView *)pinView { //Removing old pinView [_pinView removeFromSuperview]; //Adding new pinView to the view's hierachy _pinView = pinView; [self addSubview:_pinView]; //Position the new pinView self.frame = [self calculateFrame]; self.pinView.center = self.center; } - (void)setCalloutView:(UIView *)calloutView { //Removing old calloutView [_calloutView removeFromSuperview]; //Adding new calloutView to the view's hierachy _calloutView = calloutView; [self addSubview:_calloutView]; self.calloutView.hidden = YES; //Adding Border if (_hasCalloutView) { if (self.settings.shouldAddCalloutBorder) { [self addCalloutBorder]; } if (self.settings.shouldRoundifyCallout) { [self roundifyCallout]; } } [self positionSubviews]; } @end ================================================ FILE: README.md ================================================ # DXCustomCallout-ObjC [![CI Status](http://img.shields.io/travis/s3lvin/DXCustomCallout-ObjC.svg?style=flat)](https://travis-ci.org/s3lvin/DXCustomCallout-ObjC) [![Version](https://img.shields.io/cocoapods/v/DXCustomCallout-ObjC.svg?style=flat)](http://cocoapods.org/pods/DXCustomCallout-ObjC) [![License](https://img.shields.io/cocoapods/l/DXCustomCallout-ObjC.svg?style=flat)](http://cocoapods.org/pods/DXCustomCallout-ObjC) [![Platform](https://img.shields.io/cocoapods/p/DXCustomCallout-ObjC.svg?style=flat)](http://cocoapods.org/pods/DXCustomCallout-ObjC) ## Usage To run the example project, clone the repo, and run `pod install` from the Example directory first. #### Integrating `DXAnnotationView` in your project You can return a `DXAnnotationView` from - (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id)annotation method. First create your pinview and calloutview UIView *pinView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pin"]]; UIView *calloutView = [[[NSBundle mainBundle] loadNibNamed:@"myView" owner:self options:nil] firstObject]; Then you create your custom annotation view as shown below. DXAnnotationView *annotationView = (DXAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:NSStringFromClass([DXAnnotationView class])]; if (!annotationView) { annotationView = [[DXAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:NSStringFromClass([DXAnnotationView class]) pinView:pinView calloutView:calloutView settings:[DXAnnotationSettings defaultSettings]]; } return annotationView; #### Configuring additional settings for your custom callout `DXAnnotationView` has customizable look and feel. You can configure the settings by passing your own `DXAnnotationSettings` in to `DXAnnotationView` while initializing it. DXAnnotationSettings *newSettings = [[DXAnnotationSettings alloc] init]; newSettings.calloutOffset = <#your calloutoffset#>; newSettings.shouldRoundifyCallout = <#YES to make the calloutview with corner radius#>; newSettings.calloutCornerRadius = <#your callout view's corner radius. applied only if shouldRoundifyCallout is YES#>; newSettings.shouldAddCalloutBorder = <#YES to add border for your custom callout#>; newSettings.calloutBorderColor = <#your callout view's border color#>; newSettings.calloutBorderWidth = <#your callout view's border width#>; newSettings.animationType = <#DXCalloutAnimation type#>; newSettings.animationDuration = <#DXCalloutAnimation duration#>; #### Making sure the size of your custom view doesn't grow bigger 1. Disable Autolayout for your custom callout view for a moment 2. Remove the FexibleWidth and Flexible height AutoResizingMasks from your custom callout view 3. Re enable Autolayout if needed ![step1](https://cloud.githubusercontent.com/assets/6522274/9212655/824323b0-40a8-11e5-9004-a95cb0f8b6f8.jpg) ![step2](https://cloud.githubusercontent.com/assets/6522274/9212656/82434c64-40a8-11e5-9276-b63e8515bc80.jpg) ## Screenshot ![DXCustomCallout](http://s26.postimg.org/5utm5d961/Callout.gif) ## Requirements iOS 7 or above & ARC ## Installation DXCustomCallout-ObjC is available through [CocoaPods](http://cocoapods.org). To install it, simply add the following line to your Podfile: ```ruby pod "DXCustomCallout-ObjC" ``` ## Author s3lvin, mariaselvin@gmail.com Pull requests are welcome! ## License DXCustomCallout-ObjC is available under the MIT license. See the LICENSE file for more info.