How to adjust skip button #292
Unanswered
arishanapalli
asked this question in
Q&A
Replies: 1 comment
-
Changing the position of func coachMarksController(
_ coachMarksController: CoachMarksController,
constraintsForSkipView skipView: UIView,
inParent parentView: UIView
) -> [NSLayoutConstraint]? {
return [
skipView.leadingAnchor.constraint(equalTo: parentView.leadingAnchor),
skipView.trailingAnchor.constraint(equalTo: parentView.trailingAnchor),
skipView.topAnchor.constraint(equalTo: parentView.topAnchor),
skipView.heightAnchor.constraint(equalTo: 50.0)
]
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How to adjust skip button at bottom center of Overlay View?
Since skipView button overlap on notification button.
as shown in below image.
Beta Was this translation helpful? Give feedback.
All reactions