Iphone 如何在popoverview-WEPOPOVER中显示两个按钮

Iphone 如何在popoverview-WEPOPOVER中显示两个按钮,iphone,ios,ios4,Iphone,Ios,Ios4,我想在popoverview中显示两个按钮。我正在使用WEPOVER,我能够显示一个btn 但我不知道如何显示这两个按钮 UIButton *editBtn = [UIButton buttonWithType:UIButtonTypeCustom]; [editBtn setTitle:@"EDIT ME" forState:UIControlStateNormal]; [editBtn setFrame:CGRectMake(250, 0, 100,40)]; [editBtn addTar

我想在popoverview中显示两个按钮。我正在使用WEPOVER,我能够显示一个btn

但我不知道如何显示这两个按钮

UIButton *editBtn = [UIButton buttonWithType:UIButtonTypeCustom];
[editBtn setTitle:@"EDIT ME" forState:UIControlStateNormal];
[editBtn setFrame:CGRectMake(250, 0, 100,40)];
[editBtn addTarget:self action:@selector() forControlEvents:UIControlEventTouchUpInside];
[editBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
editBtn.titleLabel.shadowOffset = CGSizeMake(0, -1);
editBtn.titleLabel.font = [UIFont boldSystemFontOfSize:20];
editBtn.backgroundColor = [UIColor blackColor];

UIButton *deleteBtn = [UIButton buttonWithType:UIButtonTypeCustom];
[deleteBtn setTitle:@"Delete ME" forState:UIControlStateNormal];
[deleteBtn setFrame:CGRectMake(250, 0, 100,40)];
[deleteBtn addTarget:self action:@selector(doSubscription) forControlEvents:UIControlEventTouchUpInside];
[deleteBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
deleteBtn.titleLabel.shadowOffset = CGSizeMake(0, -1);
deleteBtn.titleLabel.font = [UIFont boldSystemFontOfSize:20];
deleteBtn.backgroundColor = [UIColor blackColor];


//  place inside a temporary view controller and add to popover
UIViewController *viewCon = [[UIViewController alloc] init];
viewCon.view = (UIView *)[NSArray arrayWithObjects:editBtn,deleteBtn, nil];
viewCon.contentSizeForViewInPopover = editBtn.frame.size;       // Set the content size

navPopover = [[WEPopoverController alloc] initWithContentViewController:viewCon];
[navPopover presentPopoverFromRect:editButton.frame
                                inView:self.view
              permittedArrowDirections:UIPopoverArrowDirectionUp | UIPopoverArrowDirectionDown
                              animated:YES];    

您为两个按钮提供了相同的框架。所以它只显示一个按钮

[editBtn setFrame:CGRectMake(250, 0, 100,40)];

[deleteBtn setFrame:CGRectMake(250, 0, 100,40)];