├── .gitignore ├── CoachMarkExample ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── CoachMarks.podspec ├── CoachMarks.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── CoachMarks.xcscheme ├── CoachMarks ├── CircularView.swift ├── CoachMarks.h ├── CoachmarkView.swift ├── CoachmarkViewDelegate.swift ├── Extensions │ ├── CGRect.swift │ └── UIView.swift └── Info.plist ├── LICENSE.md ├── README.md └── Readme └── Screenshots ├── 1.png └── Animation.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/.gitignore -------------------------------------------------------------------------------- /CoachMarkExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarkExample/AppDelegate.swift -------------------------------------------------------------------------------- /CoachMarkExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarkExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CoachMarkExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarkExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CoachMarkExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarkExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CoachMarkExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarkExample/Info.plist -------------------------------------------------------------------------------- /CoachMarkExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarkExample/ViewController.swift -------------------------------------------------------------------------------- /CoachMarks.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarks.podspec -------------------------------------------------------------------------------- /CoachMarks.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarks.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CoachMarks.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarks.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CoachMarks.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarks.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CoachMarks.xcodeproj/xcshareddata/xcschemes/CoachMarks.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarks.xcodeproj/xcshareddata/xcschemes/CoachMarks.xcscheme -------------------------------------------------------------------------------- /CoachMarks/CircularView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarks/CircularView.swift -------------------------------------------------------------------------------- /CoachMarks/CoachMarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarks/CoachMarks.h -------------------------------------------------------------------------------- /CoachMarks/CoachmarkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarks/CoachmarkView.swift -------------------------------------------------------------------------------- /CoachMarks/CoachmarkViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarks/CoachmarkViewDelegate.swift -------------------------------------------------------------------------------- /CoachMarks/Extensions/CGRect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarks/Extensions/CGRect.swift -------------------------------------------------------------------------------- /CoachMarks/Extensions/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarks/Extensions/UIView.swift -------------------------------------------------------------------------------- /CoachMarks/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/CoachMarks/Info.plist -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/README.md -------------------------------------------------------------------------------- /Readme/Screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/Readme/Screenshots/1.png -------------------------------------------------------------------------------- /Readme/Screenshots/Animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pNre/CoachMarks/HEAD/Readme/Screenshots/Animation.gif --------------------------------------------------------------------------------