2

tableviewCellのaccessoryButtonからポップオーバーを正しく表示するのに苦労しています。

私がアクセサリ ビューを使用していない理由は、セルが編集モードになっていて、緑色のプラス記号 + カスタム アクセサリ ビューの両方を表示できなかったためです。

現在、ポップオーバーは正しく表示されていますが、原点から静的な距離を設定しているため、この構成の場合のみです...これを解決する方法はありますか?

コード:

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

UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];

if (![self duplicateDayContent]) {
    duplicateDayContent = [[self storyboard]instantiateViewControllerWithIdentifier:@"CopyDay"];
    [duplicateDayContent setDelegate:self];

    duplicateDayPopover = [[UIPopoverController alloc]initWithContentViewController:duplicateDayContent];
    duplicateDayPopover.popoverContentSize = CGSizeMake(320, 600);

}

CGRect rect = CGRectMake(cell.bounds.origin.x+800, cell.bounds.origin.y+10, 50, 30);

[duplicateDayPopover presentPopoverFromRect:rect inView:cell permittedArrowDirections:UIPopoverArrowDirectionRight animated:YES];

}
4

3 に答える 3

1

迅速に、これは私のために働いています:

ポップオーバー プレゼンテーション セグエを作成し、prepareForSegue を使用して、宛先ビュー コントローラーの UIPopoverPresentationController を構成します。

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
    if (segue.identifier == Storyboard.providerInfoSegue) {
        if let vc = segue.destinationViewController.contentViewController as? /*DestinationViewControllerType*/ {
           //Configure view controllers here

            if let popOverPresentationController : UIPopoverPresentationController = vc.popoverPresentationController {


                if let cell = tableView.cellForRowAtIndexPath(selectedAccessoryIndexPath) {
                    var accessoryView: UIButton!
                    for accView in cell.subviews {
                        if accView is UIButton {
                            accessoryView = accView as? UIButton
                            break
                        }
                    }
                    popOverPresentationController.delegate = self
                    popOverPresentationController.sourceView                = cell
                    popOverPresentationController.sourceRect                = accessoryView.frame
                    popOverPresentationController.permittedArrowDirections  = UIPopoverArrowDirection.Right

                }
            }
        }
    }
}
于 2015-06-16T01:44:24.517 に答える
1

このスレッドのこのコードは私を助けてくれました: レイチェルのヒントのおかげで、UIPopoverArrowDirectionRight または UIPopoverArrowDirectionLeft を使用して UITableViewCell からポップオーバーを正しく表示する方法

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; 
    }
}
于 2013-05-25T18:12:56.327 に答える