Add customizable coach marks into your iOS project. Available for both iPhone and iPad.
- Xcode 11 / Swift 5+
- iOS 10.0+
If you need help with something in particular, ask a question in the mail.
Add VVCoachMarks to your Podfile:
platform :ios, '10.0'
use_frameworks!
pod 'VVCoachMarks'
Then, run the following command:
$ pod install
Open up the controller for which you wish to display coach marks and for example create VVCoachMark
, then use VVCoachMarkManager
shared instance and show coach mark passing it to showCoachMark()
function.
class DefaultViewController: UIViewController {
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
let coachMarkManager = VVCoachMarkManager.shared
coachMarkManager.delegate = self
let coachMark = VVCoachMark(for: self.button, in: self.view, coachMarkPosition: .topCenter, message: "Coach mark message")
coachMarkManager.showCoachMark(coachMark)
}
}
VVCoachMarkManagerDelegate
declares two optional methods.
The first one lets you provide custom body view for your coach mark or default view will be used.
func viewForCoachMarkBody() -> UIView? {
return isCustomBody ? UIImageView(image: UIImage(named: "1.jpg")) : nil
}
The second one lets you provide custom arrow view for your coach mark or default view will be used.
let pointOfInterest = UIView()
func viewForCoachMarkArrow() -> UIView? {
return !isCustomBody ? UIImageView(image: #imageLiteral(resourceName: "arrow")) : nil
}
VVCoachMarks is released under the MIT license. See LICENSE for details.