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
This may not be your exact problem, and there may be multiple issues , but it is one possible solution to what you describe, and may help others who arrive here and do have this exact issue.
In order for a class to correctly "hydrate" from a NIB in "initWithNibName", you'll need to specify that class as the owner in the NIB. Here's how to do this in XCode 4.x (where IB is now embedded in Xcode)
There's also this, from Apple's documentation of the "loadView" method, but it doesn't specify the behavior if this counsel is ignored: