Skip to content
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

Not working on iOS 13 #4

Closed
viktorkiver opened this issue Nov 3, 2022 · 2 comments
Closed

Not working on iOS 13 #4

viktorkiver opened this issue Nov 3, 2022 · 2 comments

Comments

@viktorkiver
Copy link

No description provided.

@amitkumar3968
Copy link

for ios 13, you can use below snippet(Objc) to run in ios 13,

CGRect frame=CGRectMake(0, 40, 300, 60);
UITextField * testView = [[UITextField alloc]initWithFrame:frame];
testView.backgroundColor = [UIColor clearColor];
testView.secureTextEntry = true;
testView.tag = 9090;
[ self.view addSubview:testView];

for(UIView *theview in testView.subviews){
NSLog(@"theview - %@", theview.description);
}

and paste the resulted view name in

private func getHiddenContainerTypeInStringRepresentation() throws -> String {

this method with proper condition of ios 13 availability.

@yoxisem544
Copy link
Owner

Fixed in version 1.2.2. Please try it out.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants