├── .gitignore ├── .travis.yml ├── Example ├── JDFTooltips.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── JDFTooltips-Demo.xcscheme │ │ └── JDFTooltips.xcscheme ├── JDFTooltips.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── JDFTooltips │ ├── Base.lproj │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── JDFAppDelegate.h │ ├── JDFAppDelegate.m │ ├── JDFTooltips-Info.plist │ ├── JDFTooltips-Prefix.pch │ ├── JDFTooltips.h │ ├── JDFViewController.h │ ├── JDFViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Expecta │ │ ├── LICENSE │ │ ├── README.md │ │ └── src │ │ │ ├── EXPBackwardCompatibility.h │ │ │ ├── EXPBackwardCompatibility.m │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ ├── EXPBlockDefinedMatcher.m │ │ │ ├── EXPDefines.h │ │ │ ├── EXPDoubleTuple.h │ │ │ ├── EXPDoubleTuple.m │ │ │ ├── EXPExpect.h │ │ │ ├── EXPExpect.m │ │ │ ├── EXPFloatTuple.h │ │ │ ├── EXPFloatTuple.m │ │ │ ├── EXPMatcher.h │ │ │ ├── EXPUnsupportedObject.h │ │ │ ├── EXPUnsupportedObject.m │ │ │ ├── Expecta.h │ │ │ ├── Expecta.m │ │ │ ├── ExpectaSupport.h │ │ │ ├── ExpectaSupport.m │ │ │ ├── NSObject+Expecta.h │ │ │ ├── NSValue+Expecta.h │ │ │ ├── NSValue+Expecta.m │ │ │ └── matchers │ │ │ ├── EXPMatcherHelpers.h │ │ │ ├── EXPMatcherHelpers.m │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ ├── EXPMatchers+beCloseTo.m │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ ├── EXPMatchers+beFalsy.m │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ ├── EXPMatchers+beGreaterThan.m │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.m │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ ├── EXPMatchers+beIdenticalTo.m │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ ├── EXPMatchers+beInTheRangeOf.m │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ ├── EXPMatchers+beInstanceOf.m │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ ├── EXPMatchers+beKindOf.m │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ ├── EXPMatchers+beLessThan.m │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.m │ │ │ ├── EXPMatchers+beNil.h │ │ │ ├── EXPMatchers+beNil.m │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ ├── EXPMatchers+beSubclassOf.m │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ ├── EXPMatchers+beSupersetOf.m │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ ├── EXPMatchers+beTruthy.m │ │ │ ├── EXPMatchers+beginWith.h │ │ │ ├── EXPMatchers+beginWith.m │ │ │ ├── EXPMatchers+conformTo.h │ │ │ ├── EXPMatchers+conformTo.m │ │ │ ├── EXPMatchers+contain.h │ │ │ ├── EXPMatchers+contain.m │ │ │ ├── EXPMatchers+endWith.h │ │ │ ├── EXPMatchers+endWith.m │ │ │ ├── EXPMatchers+equal.h │ │ │ ├── EXPMatchers+equal.m │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ ├── EXPMatchers+haveCountOf.m │ │ │ ├── EXPMatchers+notify.h │ │ │ ├── EXPMatchers+notify.m │ │ │ ├── EXPMatchers+raise.h │ │ │ ├── EXPMatchers+raise.m │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ ├── EXPMatchers+raiseWithReason.m │ │ │ ├── EXPMatchers+respondTo.h │ │ │ ├── EXPMatchers+respondTo.m │ │ │ └── EXPMatchers.h │ ├── Headers │ │ └── Public │ │ │ ├── Expecta │ │ │ ├── EXPBackwardCompatibility.h │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ ├── EXPDefines.h │ │ │ ├── EXPDoubleTuple.h │ │ │ ├── EXPExpect.h │ │ │ ├── EXPFloatTuple.h │ │ │ ├── EXPMatcher.h │ │ │ ├── EXPMatcherHelpers.h │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ ├── EXPMatchers+beNil.h │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ ├── EXPMatchers+beginWith.h │ │ │ ├── EXPMatchers+conformTo.h │ │ │ ├── EXPMatchers+contain.h │ │ │ ├── EXPMatchers+endWith.h │ │ │ ├── EXPMatchers+equal.h │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ ├── EXPMatchers+notify.h │ │ │ ├── EXPMatchers+raise.h │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ ├── EXPMatchers+respondTo.h │ │ │ ├── EXPMatchers.h │ │ │ ├── EXPUnsupportedObject.h │ │ │ ├── Expecta.h │ │ │ ├── ExpectaSupport.h │ │ │ ├── NSObject+Expecta.h │ │ │ └── NSValue+Expecta.h │ │ │ ├── JDFTooltips │ │ │ ├── JDFSequentialTooltipManager.h │ │ │ ├── JDFTooltipManager.h │ │ │ ├── JDFTooltipView.h │ │ │ ├── JDFTooltips.h │ │ │ ├── UILabel+JDFTooltips.h │ │ │ └── UIView+JDFTooltips.h │ │ │ └── Specta │ │ │ ├── SPTExample.h │ │ │ ├── SPTExampleGroup.h │ │ │ ├── SPTNestedReporter.h │ │ │ ├── SPTReporter.h │ │ │ ├── SPTSharedExampleGroups.h │ │ │ ├── SPTSpec.h │ │ │ ├── SPTXCTestCase.h │ │ │ ├── SPTXCTestReporter.h │ │ │ ├── Specta.h │ │ │ ├── SpectaSupport.h │ │ │ ├── SpectaTypes.h │ │ │ ├── SpectaUtility.h │ │ │ ├── XCTestCase+Specta.h │ │ │ ├── XCTestLog+Specta.h │ │ │ └── XCTestRun+Specta.h │ ├── Local Podspecs │ │ └── JDFTooltips.podspec │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── Specta │ │ ├── LICENSE │ │ ├── README.md │ │ └── src │ │ │ ├── SPTExample.h │ │ │ ├── SPTExample.m │ │ │ ├── SPTExampleGroup.h │ │ │ ├── SPTExampleGroup.m │ │ │ ├── SPTNestedReporter.h │ │ │ ├── SPTNestedReporter.m │ │ │ ├── SPTReporter.h │ │ │ ├── SPTReporter.m │ │ │ ├── SPTSharedExampleGroups.h │ │ │ ├── SPTSharedExampleGroups.m │ │ │ ├── SPTSpec.h │ │ │ ├── SPTSpec.m │ │ │ ├── SPTXCTestCase.h │ │ │ ├── SPTXCTestCase.m │ │ │ ├── SPTXCTestReporter.h │ │ │ ├── SPTXCTestReporter.m │ │ │ ├── Specta.h │ │ │ ├── Specta.m │ │ │ ├── SpectaSupport.h │ │ │ ├── SpectaTypes.h │ │ │ ├── SpectaUtility.h │ │ │ ├── SpectaUtility.m │ │ │ ├── XCTestCase+Specta.h │ │ │ ├── XCTestCase+Specta.m │ │ │ ├── XCTestLog+Specta.h │ │ │ ├── XCTestLog+Specta.m │ │ │ ├── XCTestRun+Specta.h │ │ │ └── XCTestRun+Specta.m │ └── Target Support Files │ │ ├── Pods-JDFTooltips-JDFTooltips │ │ ├── Pods-JDFTooltips-JDFTooltips-Private.xcconfig │ │ ├── Pods-JDFTooltips-JDFTooltips-dummy.m │ │ ├── Pods-JDFTooltips-JDFTooltips-prefix.pch │ │ └── Pods-JDFTooltips-JDFTooltips.xcconfig │ │ ├── Pods-JDFTooltips │ │ ├── Pods-JDFTooltips-acknowledgements.markdown │ │ ├── Pods-JDFTooltips-acknowledgements.plist │ │ ├── Pods-JDFTooltips-dummy.m │ │ ├── Pods-JDFTooltips-environment.h │ │ ├── Pods-JDFTooltips-resources.sh │ │ ├── Pods-JDFTooltips.debug.xcconfig │ │ └── Pods-JDFTooltips.release.xcconfig │ │ ├── Pods-Tests-Expecta │ │ ├── Pods-Tests-Expecta-Private.xcconfig │ │ ├── Pods-Tests-Expecta-dummy.m │ │ ├── Pods-Tests-Expecta-prefix.pch │ │ └── Pods-Tests-Expecta.xcconfig │ │ ├── Pods-Tests-JDFTooltips │ │ ├── Pods-Tests-JDFTooltips-Private.xcconfig │ │ ├── Pods-Tests-JDFTooltips-dummy.m │ │ ├── Pods-Tests-JDFTooltips-prefix.pch │ │ └── Pods-Tests-JDFTooltips.xcconfig │ │ ├── Pods-Tests-Specta │ │ ├── Pods-Tests-Specta-Private.xcconfig │ │ ├── Pods-Tests-Specta-dummy.m │ │ ├── Pods-Tests-Specta-prefix.pch │ │ └── Pods-Tests-Specta.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 ├── JDFTooltips.podspec ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── JDFSequentialTooltipManager.h │ ├── JDFSequentialTooltipManager.m │ ├── JDFTooltipManager.h │ ├── JDFTooltipManager.m │ ├── JDFTooltipView.h │ ├── JDFTooltipView.m │ ├── JDFTooltips.h │ ├── UILabel+JDFTooltips.h │ ├── UILabel+JDFTooltips.m │ ├── UIView+JDFTooltips.h │ └── UIView+JDFTooltips.m ├── README.md └── Screenshots └── JDFTooltips.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/JDFTooltips.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/JDFTooltips.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JDFTooltips.xcodeproj/xcshareddata/xcschemes/JDFTooltips-Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips.xcodeproj/xcshareddata/xcschemes/JDFTooltips-Demo.xcscheme -------------------------------------------------------------------------------- /Example/JDFTooltips.xcodeproj/xcshareddata/xcschemes/JDFTooltips.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips.xcodeproj/xcshareddata/xcschemes/JDFTooltips.xcscheme -------------------------------------------------------------------------------- /Example/JDFTooltips.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JDFTooltips.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/JDFTooltips/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Example/JDFTooltips/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Example/JDFTooltips/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/JDFTooltips/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/JDFTooltips/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips/Info.plist -------------------------------------------------------------------------------- /Example/JDFTooltips/JDFAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips/JDFAppDelegate.h -------------------------------------------------------------------------------- /Example/JDFTooltips/JDFAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips/JDFAppDelegate.m -------------------------------------------------------------------------------- /Example/JDFTooltips/JDFTooltips-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips/JDFTooltips-Info.plist -------------------------------------------------------------------------------- /Example/JDFTooltips/JDFTooltips-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips/JDFTooltips-Prefix.pch -------------------------------------------------------------------------------- /Example/JDFTooltips/JDFTooltips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips/JDFTooltips.h -------------------------------------------------------------------------------- /Example/JDFTooltips/JDFViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips/JDFViewController.h -------------------------------------------------------------------------------- /Example/JDFTooltips/JDFViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips/JDFViewController.m -------------------------------------------------------------------------------- /Example/JDFTooltips/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/JDFTooltips/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/JDFTooltips/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Expecta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Expecta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/README.md -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPBackwardCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/EXPBackwardCompatibility.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPBackwardCompatibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/EXPBackwardCompatibility.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPBlockDefinedMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/EXPBlockDefinedMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/EXPDefines.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPDoubleTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPDoubleTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/EXPDoubleTuple.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPExpect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/EXPExpect.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPExpect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/EXPExpect.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPFloatTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/EXPFloatTuple.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPFloatTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/EXPFloatTuple.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/EXPMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPUnsupportedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/EXPUnsupportedObject.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/Expecta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/Expecta.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/ExpectaSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/ExpectaSupport.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/ExpectaSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/ExpectaSupport.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/NSObject+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/NSObject+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/NSValue+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/NSValue+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/NSValue+Expecta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/NSValue+Expecta.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatcherHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatcherHelpers.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beCloseTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beCloseTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beFalsy, (void)); 4 | -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beFalsy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beFalsy.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThan.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThanOrEqualTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThanOrEqualTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beIdenticalTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beIdenticalTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beInTheRangeOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beInTheRangeOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beInstanceOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beInstanceOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beKindOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beKindOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThan.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThanOrEqualTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThanOrEqualTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beNil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beNil.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beSubclassOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beSubclassOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beSupersetOf, (id subset)); 4 | 5 | -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beSupersetOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beSupersetOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beTruthy, (void)); 4 | -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beTruthy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beTruthy.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beginWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beginWith.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+conformTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+conformTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+contain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+contain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+contain.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+endWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+endWith.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+equal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+equal.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+haveCountOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+haveCountOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+notify.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+notify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+notify.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+raise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+raise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+raise.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+raiseWithReason.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+raiseWithReason.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+respondTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+respondTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPBackwardCompatibility.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/EXPBackwardCompatibility.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/EXPDefines.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/EXPExpect.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/EXPFloatTuple.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/EXPMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+notify.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+notify.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/ExpectaSupport.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/NSObject+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/src/NSValue+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/JDFTooltips/JDFSequentialTooltipManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/JDFSequentialTooltipManager.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/JDFTooltips/JDFTooltipManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/JDFTooltipManager.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/JDFTooltips/JDFTooltipView.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/JDFTooltipView.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/JDFTooltips/JDFTooltips.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/JDFTooltips.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/JDFTooltips/UILabel+JDFTooltips.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UILabel+JDFTooltips.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/JDFTooltips/UIView+JDFTooltips.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIView+JDFTooltips.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/src/SPTExample.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/src/SPTExampleGroup.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTNestedReporter.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/src/SPTNestedReporter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTReporter.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/src/SPTReporter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/src/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/src/SPTSpec.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTXCTestCase.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/src/SPTXCTestCase.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTXCTestReporter.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/src/SPTXCTestReporter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/src/Specta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/src/SpectaSupport.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/src/SpectaTypes.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/src/SpectaUtility.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/src/XCTestCase+Specta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/XCTestLog+Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/src/XCTestLog+Specta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/XCTestRun+Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/src/XCTestRun+Specta.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/JDFTooltips.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Local Podspecs/JDFTooltips.podspec -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Specta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Specta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/README.md -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTExample.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTExample.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTExampleGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTExampleGroup.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTExampleGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTExampleGroup.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTNestedReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTNestedReporter.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTNestedReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTNestedReporter.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTReporter.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTReporter.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTSharedExampleGroups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTSharedExampleGroups.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTSpec.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTSpec.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTXCTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTXCTestCase.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTXCTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTXCTestCase.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTXCTestReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTXCTestReporter.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTXCTestReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SPTXCTestReporter.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/Specta.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/Specta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/Specta.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SpectaSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SpectaSupport.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SpectaTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SpectaTypes.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SpectaUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SpectaUtility.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SpectaUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/SpectaUtility.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/XCTestCase+Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/XCTestCase+Specta.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/XCTestCase+Specta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/XCTestCase+Specta.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/XCTestLog+Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/XCTestLog+Specta.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/XCTestLog+Specta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/XCTestLog+Specta.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/XCTestRun+Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/XCTestRun+Specta.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/XCTestRun+Specta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Specta/src/XCTestRun+Specta.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JDFTooltips-JDFTooltips/Pods-JDFTooltips-JDFTooltips-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-JDFTooltips-JDFTooltips/Pods-JDFTooltips-JDFTooltips-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JDFTooltips-JDFTooltips/Pods-JDFTooltips-JDFTooltips-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-JDFTooltips-JDFTooltips/Pods-JDFTooltips-JDFTooltips-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JDFTooltips-JDFTooltips/Pods-JDFTooltips-JDFTooltips-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-JDFTooltips-JDFTooltips/Pods-JDFTooltips-JDFTooltips-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JDFTooltips-JDFTooltips/Pods-JDFTooltips-JDFTooltips.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-JDFTooltips-JDFTooltips/Pods-JDFTooltips-JDFTooltips.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JDFTooltips/Pods-JDFTooltips-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-JDFTooltips/Pods-JDFTooltips-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JDFTooltips/Pods-JDFTooltips-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-JDFTooltips/Pods-JDFTooltips-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JDFTooltips/Pods-JDFTooltips-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-JDFTooltips/Pods-JDFTooltips-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JDFTooltips/Pods-JDFTooltips-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-JDFTooltips/Pods-JDFTooltips-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JDFTooltips/Pods-JDFTooltips-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-JDFTooltips/Pods-JDFTooltips-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JDFTooltips/Pods-JDFTooltips.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-JDFTooltips/Pods-JDFTooltips.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JDFTooltips/Pods-JDFTooltips.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-JDFTooltips/Pods-JDFTooltips.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-Expecta/Pods-Tests-Expecta-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-Tests-Expecta/Pods-Tests-Expecta-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-Expecta/Pods-Tests-Expecta-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-Tests-Expecta/Pods-Tests-Expecta-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-Expecta/Pods-Tests-Expecta-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-Tests-Expecta/Pods-Tests-Expecta-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-Expecta/Pods-Tests-Expecta.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_TESTS_EXPECTA_OTHER_LDFLAGS = -framework "Foundation" -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-JDFTooltips/Pods-Tests-JDFTooltips-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-Tests-JDFTooltips/Pods-Tests-JDFTooltips-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-JDFTooltips/Pods-Tests-JDFTooltips-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-Tests-JDFTooltips/Pods-Tests-JDFTooltips-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-JDFTooltips/Pods-Tests-JDFTooltips-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-Tests-JDFTooltips/Pods-Tests-JDFTooltips-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-JDFTooltips/Pods-Tests-JDFTooltips.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_TESTS_JDFTOOLTIPS_OTHER_LDFLAGS = -framework "UIKit" -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-Specta/Pods-Tests-Specta-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-Tests-Specta/Pods-Tests-Specta-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-Specta/Pods-Tests-Specta-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-Tests-Specta/Pods-Tests-Specta-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-Specta/Pods-Tests-Specta-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-Tests-Specta/Pods-Tests-Specta-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-Specta/Pods-Tests-Specta.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-Tests-Specta/Pods-Tests-Specta.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/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/JoeFryer/JDFTooltips/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/JoeFryer/JDFTooltips/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/JoeFryer/JDFTooltips/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/JoeFryer/JDFTooltips/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/JoeFryer/JDFTooltips/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/JoeFryer/JDFTooltips/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /JDFTooltips.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/JDFTooltips.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/JDFSequentialTooltipManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Pod/Classes/JDFSequentialTooltipManager.h -------------------------------------------------------------------------------- /Pod/Classes/JDFSequentialTooltipManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Pod/Classes/JDFSequentialTooltipManager.m -------------------------------------------------------------------------------- /Pod/Classes/JDFTooltipManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Pod/Classes/JDFTooltipManager.h -------------------------------------------------------------------------------- /Pod/Classes/JDFTooltipManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Pod/Classes/JDFTooltipManager.m -------------------------------------------------------------------------------- /Pod/Classes/JDFTooltipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Pod/Classes/JDFTooltipView.h -------------------------------------------------------------------------------- /Pod/Classes/JDFTooltipView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Pod/Classes/JDFTooltipView.m -------------------------------------------------------------------------------- /Pod/Classes/JDFTooltips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Pod/Classes/JDFTooltips.h -------------------------------------------------------------------------------- /Pod/Classes/UILabel+JDFTooltips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Pod/Classes/UILabel+JDFTooltips.h -------------------------------------------------------------------------------- /Pod/Classes/UILabel+JDFTooltips.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Pod/Classes/UILabel+JDFTooltips.m -------------------------------------------------------------------------------- /Pod/Classes/UIView+JDFTooltips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Pod/Classes/UIView+JDFTooltips.h -------------------------------------------------------------------------------- /Pod/Classes/UIView+JDFTooltips.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Pod/Classes/UIView+JDFTooltips.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/JDFTooltips.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoeFryer/JDFTooltips/HEAD/Screenshots/JDFTooltips.gif --------------------------------------------------------------------------------