-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Eye button disappear #29
Comments
Fixed in the latest release |
The eye button is still missing :( |
any news on the eye button?? |
Same issue for me, using last version 5.0.0.0.0 |
Use below code to hot fix the problem override func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil) {
if(viewControllerToPresent.description.contains("TCMask.MaskViewController")){
let eyeView = viewControllerToPresent.view.subviews[2].subviews[0]
eyeView.isHidden = false
viewControllerToPresent.view.subviews[2].bringSubviewToFront(eyeView)
}
super.present(viewControllerToPresent, animated: flag, completion: completion)
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I use TinyCrayon 3.3.2 and the eye button disappear.
The text was updated successfully, but these errors were encountered: