मैं इस समय इस UIAlertView उपयोग कर रहा हूँ एक लॉगिन पॉपअप करने के लिए,UIAlertView: UIAlertViewStyleSecureTextInput: संख्यात्मक कुंजीपटल
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Restricted"
message:@"Please Enter Code to Enable Fields"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Login"
, nil];
alert.alertViewStyle = UIAlertViewStyleSecureTextInput;
[alert show];
हालांकि मैं पाठ इनपुट चाहते हैं एक अंकीय बजाय कुंजीपटल नियमित कीबोर्ड होने की
वहाँ एक आसान तरीका यह करने के लिए है, या मैं एक कस्टम UIAleartView
ऐड अपने * ज फ़ाइल –