I want to create a customized UIAlertView
and since I'm already using Three20 I thought I'd give it a shot.
I saw they have TTAlertViewController
class.
I tried to call it like this:
TTAlertViewController* vc = [[TTAlertViewController alloc] initWithNibName:@"MyAlertView" bundle:nil];
[vc addButtonWithTitle:@"OK" URL:@"MyApp://buttonOk"];
But it doesn't seem to work (just showing that button) , I guess cause they are already implementing LoadView
, which to my understanding "kills" any way to use a Nib file.
Does anyone know how to customize alert view using Three20's UI objects ?
Thanks