├── .gitignore ├── .travis.yml ├── DXCustomCallout-ObjC.podspec ├── Example ├── DXCustomCallout-ObjC.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── DXCustomCallout-ObjC-Example.xcscheme ├── DXCustomCallout-ObjC.xcworkspace │ └── contents.xcworkspacedata ├── 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 │ │ │ └── car-blue-icon.png │ │ └── pin.imageset │ │ │ ├── Contents.json │ │ │ └── pin.png │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── main.m │ └── myView.xib ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ └── DXCustomCallout-ObjC │ │ │ │ ├── DXAnnotationSettings.h │ │ │ │ └── DXAnnotationView.h │ │ └── Public │ │ │ └── DXCustomCallout-ObjC │ │ │ ├── DXAnnotationSettings.h │ │ │ └── DXAnnotationView.h │ ├── Local Podspecs │ │ └── DXCustomCallout-ObjC.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── 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-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-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 │ │ └── 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 └── 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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/.travis.yml -------------------------------------------------------------------------------- /DXCustomCallout-ObjC.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/DXCustomCallout-ObjC.podspec -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC.xcodeproj/xcshareddata/xcschemes/DXCustomCallout-ObjC-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC.xcodeproj/xcshareddata/xcschemes/DXCustomCallout-ObjC-Example.xcscheme -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/DXAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/DXAppDelegate.h -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/DXAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/DXAppDelegate.m -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/DXCustomCallout-ObjC-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/DXCustomCallout-ObjC-Info.plist -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/DXCustomCallout-ObjC-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/DXCustomCallout-ObjC-Prefix.pch -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/DXViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/DXViewController.h -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/DXViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/DXViewController.m -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/Images.xcassets/car-blue-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/Images.xcassets/car-blue-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/Images.xcassets/car-blue-icon.imageset/car-blue-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/Images.xcassets/car-blue-icon.imageset/car-blue-icon.png -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/Images.xcassets/pin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/Images.xcassets/pin.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/Images.xcassets/pin.imageset/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/Images.xcassets/pin.imageset/pin.png -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/main.m -------------------------------------------------------------------------------- /Example/DXCustomCallout-ObjC/myView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/DXCustomCallout-ObjC/myView.xib -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DXCustomCallout-ObjC/DXAnnotationSettings.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/DXAnnotationSettings.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/DXCustomCallout-ObjC/DXAnnotationView.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/DXAnnotationView.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DXCustomCallout-ObjC/DXAnnotationSettings.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/DXAnnotationSettings.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/DXCustomCallout-ObjC/DXAnnotationView.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/DXAnnotationView.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/DXCustomCallout-ObjC.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Local Podspecs/DXCustomCallout-ObjC.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-DXCustomCallout-ObjC.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-DXCustomCallout-ObjC/Pods-DXCustomCallout-ObjC.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-Tests-DXCustomCallout-ObjC/Pods-Tests-DXCustomCallout-ObjC.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/DXAnnotationSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Pod/Classes/DXAnnotationSettings.h -------------------------------------------------------------------------------- /Pod/Classes/DXAnnotationSettings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Pod/Classes/DXAnnotationSettings.m -------------------------------------------------------------------------------- /Pod/Classes/DXAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Pod/Classes/DXAnnotationView.h -------------------------------------------------------------------------------- /Pod/Classes/DXAnnotationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/Pod/Classes/DXAnnotationView.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3lvin/DXCustomCallout-ObjC/HEAD/README.md --------------------------------------------------------------------------------