gpambrozio / BlockAlertsAnd-ActionSheets

Beautifully done UIAlertView and UIActionSheet replacements inspired by TweetBot
http://codecropper.com/2012/01/replicating-tweetbots-alerts-and-action-sheets/
MIT License
1.41k stars 268 forks source link

BlockTextPromptAlertView small textbox input with no Title or captions #34

Closed wilferrel closed 12 years ago

wilferrel commented 12 years ago

Everytime I call BlockTextPromptAlertView I get a small textbox that I can type in but cannot see the Title or message.

Code:

UITextField *textField;

BlockTextPromptAlertView *alert = [BlockTextPromptAlertView promptWithTitle:@"Test" message:@"Test Message " textField:&textField];

[alert addButtonWithTitle:@"okay" block:^{

    NSLog(@"Text: %@", textField.text);

    self.text=textField.text;

}];

[alert show];
gpambrozio commented 12 years ago

Did you copy the PNG assets to your project?

wilferrel commented 12 years ago

Wow as simple as that... I feel really dumb sorry if you had mention that in your instructions and I just missed it.. Thanks again for you help looking forward in using this in my upcoming projects! BTW that was crazy fast response ! Thanks again.