Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
413 views
in Technique[技术] by (71.8m points)

uitextfield - iOS multiple text fields on a UIAlertview In IOS 7

So the new iOS 7 has come out and I'm trying to add multiple textFields and labels to the UIAlertviews. I need three. I've been trying to add them as subviews and that doesn't work anymore. I have also tried to add multiple lines with the UIAlertViewStylePlainTextInput but it only seems to return one text field.

I need to add in labels to show them what to enter as well. Is there a way to accomplish this task with the new iOS 7?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The only solution i found using UIAlertView with more than one text field in iOS7 is for login only.

use this line to initialize your alertView

[alert setAlertViewStyle:UIAlertViewStyleLoginAndPasswordInput];

and this to grab the users input:

user = [alert textFieldAtIndex:0].text;
pw = [alert textFieldAtIndex:1].text

For other purposes than login view the other threads like this on: UIAlertView addSubview in iOS7


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...