objective c - textField does not show in the alertView -
यहाँ मेरा कोड है:
UIAlertView * theAlert = [[UIAlertView alloc] initWithTitle: @ "अलर्ट" संदेश: शून्य प्रतिनिधि: स्वयं रद्द करेंट्यूटन शीर्षक: अन्य कोई भी बटनटाइटल्स: @ "ओके", शून्य]; UITextField * textField = [[UITextField alloc] initWithFrame: CGRectMake (12, 45, 260, 30)]; [पाठ फ़ील्ड सेटबैकग्राम रंग: [UIColor clearColor]]; TextField.borderStyle = UITextBorderStyleRoundedRect; [TheAlert addSubview: textField]; [एलेर्ट शो]; [टेक्स्टफिल्ड रिलीज़]; [एलेर्ट रिलीज]; चेतावनी दृश्य में कोई पाठ नहीं है, केवल एक शीर्षक "अलर्ट" और एक बटन "ठीक है"
आपका पृष्ठभूमि का रंग स्पष्ट है, इसलिए यह दिखा नहीं रहा है
[textField setBackgroundColor: [UIColor redColor]] ;. और डिफ़ॉल्ट टेक्स्ट फ़ील्ड भी दिखाएं
theAlert.alertViewStyle = UIAlertViewStylePlainTextInput; // या यूज़रनेम और पासवर्ड के लिए theAlert.alertViewStyle = UIAlertViewStyleLoginAndPasswordInput; // या पासवर्ड के लिए theAlert.alertViewStyle = UIAlertViewStyleSecureTextInput; इसे आज़माएं
Comments
Post a Comment