Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum

View Single Post
Old 11-20-2009, 09:35 AM   #12 (permalink)
batlin
Registered Member
 
Join Date: Mar 2009
Location: Austin, TX
Posts: 67
batlin is on a distinguished road
Default

Quote:
Originally Posted by BrianSlick View Post
Add a couple \n to the end of the message.

YOU ARE AWESOME!
Thank you.. that did it.. here is my code for anyone that is curious...

Code:
UIAlertView *myAlert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Congratulations!",@"Congrats Title") 
                                                      message:@"You scored in the top 5!\n\n"  
                                                     delegate:self 
                                            cancelButtonTitle:NSLocalizedString(@"Cancel","@Cancel") 
                                            otherButtonTitles:NSLocalizedString(@"Ok",@"Ok"), nil];
    myAlert.frame = CGRectMake( 0, 0, 300, 260);
    UITextField *myTextField = [[UITextField alloc] initWithFrame:CGRectMake(32.0, 65.0, 220.0, 25.0)];
    [myTextField setBackgroundColor:[UIColor whiteColor]];
    myTextField.placeholder = @"Your Name";
    myTextField.borderStyle = UITextBorderStyleRoundedRect;
    myTextField.backgroundColor = [UIColor blackColor];
    myTextField.delegate = self;
    myTextField.tag = 1;
    [myAlert addSubview:myTextField];
    CGAffineTransform myTransform = CGAffineTransformMakeTranslation(0.0, 75.0);
    [myAlert setTransform:myTransform];
    [myAlert show];
    [myAlert release];
__________________
--------------------------------------------------------------
Applications:
Tap Dat! - Become a Tapping Fiend and compete with people around the world!
www.batlin-solutions.com
batlin is offline   Reply With Quote
 

» Advertisements
» Stats
Members: 175,367
Threads: 93,995
Posts: 402,443
Top Poster: BrianSlick (7,978)
Welcome to our newest member, nelsonmcnichol
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 04:30 AM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.