I’ve tried to add a WebView to the AlertView using this code:
- (void)viewDidLoad {
search = [[UIAlertView alloc] initWithTitle:@"title" message:@"iGoogle" delegate:nil cancelButtonTitle:@"Cancel" otherButtonTitles:@"Search", nil];
[search addSubview:googleView];
googleView = [[UIWebView alloc] initWithFrame:CGRectMake(12.0, 45.0, 260.0, 25.0)];
[search show];
[search release];
[super viewDidLoad]; }
Still, only the AlertView shows up, without the WebView. And also, where can I get more details on adding stuff like CGRectMakes?
try to add
[search addSubview:googleView];after the googlview is allocated…