UIAlertViews With TextFields

Joined
Oct 11, 2011
Messages
46
Reaction score
0
Points
6
Your Mac's Specs
13" MacBook Pro 2.4 GHz 8 GB Ram 250 GB HD, iPhone 4/S 64 GB, iPhone 3GS 16 GB, iPad 16 GB Wi-Fi
i want to add UITextFields in my alert view,


I've used the UIAlertViewStyleLoginAndPasswordInput style, but i want to disable the hiding of the password characters as i type it in, because it is not going to be a login view, i just don't want to create the alertView from scratch.


is there a way i can just disable that thing that hides the text characters into those circles? by just calling a method?
 
Joined
Apr 10, 2012
Messages
7
Reaction score
0
Points
1
i want to add UITextFields in my alert view,


I've used the UIAlertViewStyleLoginAndPasswordInput style, but i want to disable the hiding of the password characters as i type it in, because it is not going to be a login view, i just don't want to create the alertView from scratch.


is there a way i can just disable that thing that hides the text characters into those circles? by just calling a method?

Code:
myTextField.secureTextEntry = NO;
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top