35

我总是尝试以这种方式从 tableView 内的单元格中显示一个弹出窗口:

[myPopover presentPopoverFromRect:cell.frame inView:self.tableView permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];

但我不能使用 UIPopoverArrowDirectionRight 或 Left,因为根据 ipad 的位置(纵向或横向),弹出框会出现在其他地方。

我是否以正确的方式呈现弹出框?

PS:表格视图在一个splitView的detailView中。

4

11 回答 11

50

您通过 rectForRowAtIndexPath 方法从单元格中获取框架。这是对的。然而,tableview 很可能是较大 iPad 视图的子视图,因此当弹出框获取坐标时,它认为它们在较大的视图中。这就是弹出框出现在错误位置的原因。

例如,该行的 CGRect 是 (0,40,320,44)。它不是针对 tableview 上的该框架的弹出框,而是针对您的主视图上的该框架。

我通过将框架从表格的相对坐标转换为更大视图中的坐标来解决了这个问题。

代码:

CGRect aFrame = [self.myDetailViewController.tableView rectForRowAtIndexPath:[NSIndexPath indexPathForRow:theRow inSection:1]];
[popoverController presentPopoverFromRect:[self.myDetailViewController.tableView convertRect:aFrame toView:self.view] inView:self.view permittedArrowDirections:UIPopoverArrowDirectionRight animated:YES];

希望能帮助其他人搜索这个问题。

于 2010-12-22T19:31:41.123 回答
23

在 Swift 中,在上述答案之间,这适用于我在任何方向的 iPad 上:

if let popOverPresentationController : UIPopoverPresentationController = myAlertController.popoverPresentationController {

    let cellRect = tableView.rectForRowAtIndexPath(indexPath)

    popOverPresentationController.sourceView                = tableView
    popOverPresentationController.sourceRect                = cellRect
    popOverPresentationController.permittedArrowDirections  = UIPopoverArrowDirection.Any

}
于 2015-04-28T22:20:23.297 回答
22

我今天遇到了这个问题,我找到了一个更简单的解决方案。
实例化弹出框时,您需要指定单元格的内容视图:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UIViewController *aViewController = [[UIViewController alloc] init];
    // initialize view here

    UIPopoverController *popoverController = [[UIPopoverController alloc] 
        initWithContentViewController:aViewController];
    popoverController.popoverContentSize = CGSizeMake(320, 416);
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    [popoverController presentPopoverFromRect:cell.bounds inView:cell.contentView 
        permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];

    [aView release];
    // release popover in 'popoverControllerDidDismissPopover:' method
}
于 2011-05-10T20:41:37.457 回答
4

要在附件旁边弹出一个弹出窗口,您可以使用此代码:)

我将其用于更高级的用途:

  1. 找到自定义的 accesoryView (cell.accesoryView)
  2. 如果为空,则查找生成的 accesoryView (UIButton) 如果单元格有
  3. 如果 UIButton 不存在,请查找单元格内容视图 (UITableViewCellContentView)
  4. 如果单元格内容视图不存在,请使用单元格视图

可用于UIActionSheetUIPopoverController

这是我的代码:

UIView *accessoryView       = cell.accessoryView; // finds custom accesoryView (cell.accesoryView)
if (accessoryView == nil) {
    UIView *cellContentView = nil;

    for (UIView *accView in [cell subviews]) {
        if ([accView isKindOfClass:[UIButton class]]) {
            accessoryView   = accView; // find generated accesoryView (UIButton) 
            break;
        } else if ([accView isKindOfClass:NSClassFromString(@"UITableViewCellContentView")]) {
            // find generated UITableViewCellContentView                
            cellContentView = accView; 
        }
    }
    // if the UIButton doesn't exists, find cell contet view (UITableViewCellContentView)           
    if (accessoryView == nil) { 
        accessoryView   = cellContentView; 
    }
    // if the cell contet view doesn't exists, use cell view
    if (accessoryView == nil) {
        accessoryView   = cell; 
    }
}

[actionSheet showFromRect:accessoryView.bounds inView:accessoryView animated:YES];

在 iOS 4.3 到 5.1 中测试

最好用作自定义方法:

-(UIView*)getViewForSheetAndPopUp:(UITableViewCell*)cell;

和方法代码:

-(UIView*)getViewForSheetAndPopUp:(UITableViewCell*)cell {
UIView *accessoryView = cell.accessoryView;

if (accessoryView == nil) {
    UIView *cellContentView = nil;

    for (UIView *accView in [cell subviews]) {
        if ([accView isKindOfClass:[UIButton class]]) {
            accessoryView = accView;
            break;
        } else if ([accView isKindOfClass:NSClassFromString(@"UITableViewCellContentView")]) {              
            cellContentView = accView;
        }
    }       

    if (accessoryView == nil) {
        accessoryView   = cellContentView;
    }
    if (accessoryView == nil) {
        accessoryView   = cell;
    }
}

return accessoryView;
}
于 2012-06-21T17:52:25.587 回答
3

我也遇到过这个问题。我的一个解决方案是简单地更改由返回的矩形的宽度CGRect)rectForRowAtIndexPath:(NSIndexPath *)indexPath

CGRect rect = [aTableView rectForRowAtIndexPath:indexPath];

//create a 10 pixel width rect at the center of the cell

rect.origin.x = (rect.size.width - 10.0) / 2.0; 
rect.size.width = 10.0;  

[self.addExpensePopoverController presentPopoverFromRect:rect inView:aTableView permittedArrowDirections:UIPopoverArrowDirectionAny  animated:YES]; 

这将创建一个以单元格为中心的矩形。这样,popover 就有更多机会找到一个合适的位置来定位自己。

于 2010-11-15T15:48:32.607 回答
2

我遇到了同样的问题,这是我使用的解决方法:

  • 在我的 UITableViewCell 中,我为单元格的特定按钮添加了操作(当我从 NIB 生成单元格时,IBActions)。
  • 然后我定义了一个模仿我的动作选择器的 CellActionDelegate 协议,我有我的按钮(发送者)和我的单元格(自我)
  • 然后我的 splitViewController 的 detailViewController 实现了这个协议,将单元格的坐标转换为它的坐标......

这里是代码示例

在 MyCustomTableViewCell.m 中:

   -(IBAction)displaySomeCellRelativePopover:(id)sender{
        //passes the actions to its delegate
        UIButton *button = (UIButton *)sender;
        [cellActionDelegate displaySomeCellRelativePopoverWithInformation:self.info
                                                               fromButton:button 
                                                                 fromCell:self];   
   }

并且,在 MyDetailViewController.m 中:

-(void)displaySomeCellRelativePopoverWithInformation:(MyCellInformationClass *)info
                                          fromButton:(UIButton *)button 
                                            fromCell:(UIView *)cell{

UIPopoverController * popoverController = nil;

//create your own UIPopoverController the way you want

//Convert your button/view frame

CGRect buttonFrameInDetailView = [self.view convertRect:button.frame fromView:cell];

//present the popoverController
[popoverController presentPopoverFromRect:buttonFrameInDetailView
                               inView:self.view permittedArrowDirections:UIPopoverArrowDirectionRight animated:YES];]


//release objects created...
}

PS:当然,“动作”不一定是 IBAction,弹出框的来源不一定是 UIButton - 单个 UIView 会很好:)

于 2010-07-06T13:58:10.257 回答
1

单元格框架将类似于 0,0,width,size,我不相信它的 X 和 Y 相对于 tableView...你想使用 - (CGRect)rectForRowAtIndexPath:(NSIndexPath *)indexPath这个,这应该为您返回相对于 tableView 的单元格的正确框架......这是一个链接UITableView ref

于 2010-06-10T16:32:15.750 回答
1

这是对我来说很好的简单解决方案

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    CGRect rect=CGRectMake(cell.bounds.origin.x+600, cell.bounds.origin.y+10, 50, 30);
    [popOverController presentPopoverFromRect:rect inView:cell permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];

}
于 2011-12-07T13:23:24.487 回答
1

接受的答案现在无法编译。

CGRect rect =[tableView rectForRowAtIndexPath:indexPath]; //This is how to get the correct position on the tableView    
UIPopoverPresentationController *popController = [controller popoverPresentationController];
popController.sourceRect = rect;
popController.permittedArrowDirections = 0;  //Here there is no arrow. It is my app's need
popController.delegate = self;
popController.sourceView = self.tableView;
popController.sourceView.backgroundColor = [UIColor yellowColor];
于 2018-09-14T12:08:47.727 回答
0

这就是我所做的并且工作得很好。

RidersVC *vc = [RidersVC ridersVC];
vc.modalPresentationStyle = UIModalPresentationPopover;
vc.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
UIPopoverPresentationController *popPresenter = [vc popoverPresentationController];
popPresenter.sourceView = vc.view;
popPresenter.barButtonItem= [[UIBarButtonItem alloc] initWithCustomView:button];
popPresenter.backgroundColor = [UIColor colorWithRed:220.0f/255.0f green:227.0f/255.0f blue:237.0f/255.0f alpha:1.0];
[self.parentVC presentViewController:vc animated:YES completion:NULL];
于 2014-10-21T10:21:33.720 回答
0

这也对我有用:

        //当前选中单元格的绝对坐标
        CGRect frame =[self.view convertRect:[tbvEventsMatch rectForRowAtIndexPath:indexPath] fromView:tbvEventsMatch.viewForBaselineLayout];

于 2014-12-14T10:38:33.423 回答