How to move the buttons in a UIAlertView to make room for an inserted UITextField? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T19:21:17Z http://stackoverflow.com/feeds/question/409599 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/409599/how-to-move-the-buttons-in-a-uialertview-to-make-room-for-an-inserted-uitextfield 1 How to move the buttons in a UIAlertView to make room for an inserted UITextField? Olie 2009-01-03T19:03:23Z 2009-07-27T01:45:30Z <p>[EDIT] Hmm. Perhaps this question should be titled "what is the default user-input dialog view called in CocoaTouch?" I realize that I can create an entire view that is exactly what I want, and wrap it in a view controller and presentModalView -- but I was sort of hoping that there was a standard, normal user-input "dialog" view that came-with Cocoa-touch. "Enter your name", "enter text to search", etc., are VERY common things!</p> <p>Anyway... here's the question as I originally asked it:</p> <p>This code:</p> <pre><code>UIAlertView* find = [[UIAlertView alloc] init]; [find setDelegate:self]; [find setTitle:@"Find"]; [find addButtonWithTitle:@"Cancel"]; [find addButtonWithTitle:@"Find &amp; Bring"]; [find addButtonWithTitle:@"Find &amp; Go"]; [find addButtonWithTitle:@"Go To Next"]; [find addSubview:_findText]; CGRect frm = find.frame; int height = frm.size.height + _findText.frame.size.height + 100; // note how even 100 has no effect. [find setFrame:CGRectMake(frm.origin.x, frm.origin.y, frm.size.width, height)]; [find setNeedsLayout]; [find show]; [find release]; </code></pre> <p>Produces this Alert view:</p> <p><img src="http://www.publicplayground.com/IMGs/Misc/FindAlert.png" alt="Find Alert" /></p> <p>(I started with the code from <a href="http://stackoverflow.com/questions/376104/uitextfield-in-uialertview-on-iphone-how-to-make-it-responsive#376546" rel="nofollow" title="This other guy's question">this question by emi1Faber</a>, and it works as advertised; however, as I state in my comment, the cancel button overlays the text field.)</p> <p>How do I reshuffle everything to make the text field fit properly? [findAlert setNeedsLayout] doesn't seem to do anything, even after I [findAlert setFrame:tallerFrame]. Hints?</p> <p>Thanks!</p> http://stackoverflow.com/questions/409599/how-to-move-the-buttons-in-a-uialertview-to-make-room-for-an-inserted-uitextfield/409714#409714 4 Answer by Stephen Darlington for How to move the buttons in a UIAlertView to make room for an inserted UITextField? Stephen Darlington 2009-01-03T19:58:47Z 2009-01-03T19:58:47Z <p>Even if you can get this working it's not going to be very iPhone-y. The <code>UIAlertView</code> really is not designed for user input like this. If you look in all the Apple apps you'll see that they use a new view that displayed using the <code>presentModalViewController:</code> method of <code>UIViewController</code>.</p> http://stackoverflow.com/questions/409599/how-to-move-the-buttons-in-a-uialertview-to-make-room-for-an-inserted-uitextfield/412578#412578 0 Answer by lostInTransit for How to move the buttons in a UIAlertView to make room for an inserted UITextField? lostInTransit 2009-01-05T08:32:09Z 2009-01-05T08:32:09Z <p>Try putting in some (\n)s after the title in the UIAlertView initialization. That will push down the buttons. And I agree with Stephen here. There are chances that Apple might reject an app if it uses controls in a way they shouldn't be. (there's some clause in the Human Interface Guidelines about that!)</p> http://stackoverflow.com/questions/409599/how-to-move-the-buttons-in-a-uialertview-to-make-room-for-an-inserted-uitextfield/412618#412618 5 Answer by rpetrich for How to move the buttons in a UIAlertView to make room for an inserted UITextField? rpetrich 2009-01-05T09:12:06Z 2009-01-05T09:41:35Z <p>The simplest (and most proper way) to move the text view down is to add a message</p> <pre><code>[find setMessage:@"\n"]; </code></pre> <p>Also, the reason your frame isn't taking effect is that <code>-show</code> sets the frame and creates the view hierarchy before starting the animation. You should also make the text view the first responder so the keyboard pops up.</p> <p>Full example:</p> <pre><code>// Create Alert UIAlertView* av = [UIAlertView new]; av.title = @"Find"; // Add Buttons [av addButtonWithTitle:@"Cancel"]; [av addButtonWithTitle:@"Find &amp; Bring"]; [av addButtonWithTitle:@"Find &amp; Go"]; [av addButtonWithTitle:@"Go to Next"]; // Make Space for Text View av.message = @"\n"; // Have Alert View create its view heirarchy, set its frame and begin bounce animation [av show]; // Adjust the frame CGRect frame = av.frame; frame.origin.y -= 100.0f; av.frame = frame; // Add Text Field UITextField* text = [[UITextField alloc] initWithFrame:CGRectMake(20.0, 45.0, 245.0, 25.0)]; text.borderStyle = UITextBorderStyleRoundedRect; [av addSubview:text]; [text becomeFirstResponder]; </code></pre> <p>Note: You can also modify the subviews of UIAlertView, but since Apple has already changed the UIAlertView layout once you should check their class descriptions and frames against known values before setting new ones. You can even get something like this:</p> <p><img src="http://booleanmagic.com/uploads/UIAlertViewHack.png" alt="Preview" /></p> http://stackoverflow.com/questions/409599/how-to-move-the-buttons-in-a-uialertview-to-make-room-for-an-inserted-uitextfield/412637#412637 1 Answer by zoul for How to move the buttons in a UIAlertView to make room for an inserted UITextField? zoul 2009-01-05T09:24:42Z 2009-01-05T09:24:42Z <p>Most probably You would want to look into the <code>addTextFieldWithValue</code> method of the <code>UIAlertView</code>? Add the following code somewhere at the top of Your class:</p> <pre><code>@interface UIAlertView () - (void) addTextFieldWithValue: (NSString*) val label: (NSString*) label; - (UITextField*) textField; @end </code></pre> <p>It’s not official, but IMHO it’s not getting You rejected from the App store and it’s much better solution than hacking the textfield into the dialog Yourself.</p> http://stackoverflow.com/questions/409599/how-to-move-the-buttons-in-a-uialertview-to-make-room-for-an-inserted-uitextfield/532492#532492 2 Answer by Megachan for How to move the buttons in a UIAlertView to make room for an inserted UITextField? Megachan 2009-02-10T14:14:34Z 2009-02-10T14:14:34Z <p>This simpler method works for me:</p> <p>UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"UIAlertView" message:@""delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil]; [alert addTextFieldWithValue:@"" label:@"Text Field"];</p> <p>Hope that helps</p> <p>Oh if you needed multiple button rows then it's: [alert setNumberOfRows:3];</p> <p>Cheers</p> http://stackoverflow.com/questions/409599/how-to-move-the-buttons-in-a-uialertview-to-make-room-for-an-inserted-uitextfield/1183994#1183994 1 Answer by Mr.Gando for How to move the buttons in a UIAlertView to make room for an inserted UITextField? Mr.Gando 2009-07-26T07:46:59Z 2009-07-27T01:45:30Z <p>Zoul proposed the best method, to capture user input just do:</p> <p>a) Add the UITextFieldDelegate protocol to your class.</p> <p>b) Do something like </p> <pre><code> UIAlertView *insertScore = [UIAlertView new]; [insertScore setDelegate:self]; [insertScore setTitle:@"New Title!"]; [insertScore addButtonWithTitle:@"Cancel"]; [insertScore addButtonWithTitle:@"Ok"]; insertScore.message = @"\n"; [insertScore addTextFieldWithValue:@"Input" label:@"player"]; [[insertScore textField] setDelegate:self]; [insertScore show]; [insertScore release]; </code></pre> <p>c) The crucial part was to set the delegate of the textField to self, then to access data you can simply:</p> <pre><code>- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { NSLog(@"%@",[[alertView textField] text]); } </code></pre> <p>Hope this helps someone, since I had to think a bit to get it right.</p>