私は常にこの方法でtableView内のセルからポップオーバーを表示しようとします:
[myPopover presentPopoverFromRect:cell.frame inView:self.tableView permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
しかし、iPadの位置(ポートレートまたはランドスケープ)に応じて、ポップオーバーが別の場所に表示されるため、UIPopoverArrowDirectionRightまたはLeftを使用できません。
ポップオーバーを正しい方法で提示していますか?
PS:テーブルビューはsplitViewのdetailViewにあります。
ここに私のためにうまくいく簡単な解決策があります
- (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];
}
RectForRowAtIndexPathメソッドを介してセルからフレームを取得しています。正解です。ただし、テーブルビューは、より大きなiPadビューのサブビューである可能性が高いため、ポップオーバーが座標を取得すると、より大きなビューにあると考えます。これが、ポップオーバーが間違った場所に表示される理由です。
たとえば、行のCGRectは(0,40,320,44)です。テーブルビューのそのフレームをターゲットにするポップオーバーの代わりに、メインビューのそのフレームをターゲットにします。
フレームをテーブルの相対座標から拡大表示の座標に変換することで、この問題を解決しました。
コード:
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];
他の人がこの問題を検索するのに役立つことを願っています。
今日、この問題に遭遇しましたが、より簡単な解決策を見つけました。
ポップオーバーをインスタンス化するとき、セルのコンテンツビューを指定する必要があります。
- (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
}
Swiftでは、上記の回答の間で、これはiPadで任意の方向に機能します:
if let popOverPresentationController : UIPopoverPresentationController = myAlertController.popoverPresentationController {
let cellRect = tableView.rectForRowAtIndexPath(indexPath)
popOverPresentationController.sourceView = tableView
popOverPresentationController.sourceRect = cellRect
popOverPresentationController.permittedArrowDirections = UIPopoverArrowDirection.Any
}
アクセサリーの横にポップオーバーをポップするには、このコードを使用できます:)
これをもっと使用します高度な使用:
IActionSheetまたはIPopoverControllerに使用できます。
ここに私のコード:
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;
}
私もこの問題に出くわしました。私にとっての解決策は、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];
これにより、セルの中央に長方形が作成されます。このようにして、ポップオーバーは自分自身を配置するのに適した場所を見つける可能性が高くなります。
私は同じ種類の問題がありました、ここに私が使用した回避策があります:
ここにコードの例
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が良いでしょう:)
セルフレームは0,0、width、sizeのようなものになります。tableViewに対してXとYが相対的になるとは思わない...使用したい CGRect)rectForRowAtIndexPath:(NSIndexPath *)indexPath forこれは、tableViewに関連するセルの正しいフレームを返すはずです...ここにリンクがあります---(UITAbleView ref
これは私がやった方法であり、完全にうまく動作します。
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];
これも私のために働いた:
//現在選択されているセルからの絶対座標です CGRect frame = [self.view convertRect:[tbvEventsMatch rectForRowAtIndexPath:indexPath] fromView:tbvEventsMatch.viewForBaselineLayout];
受け入れられた答えは今コンパイルできません。
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];