我有项目表(UITableViewController
),我在这里使用可自定义的单元格来展示项目。在每个单元格的左侧,我有一个缩略图,当你点击它时(在图像上方的按钮上,确切地说),会出现一个弹出框,应该显示放大的图像。它仅适用于第一个单元格:
单击下面的单元格会显示错误移位的弹出窗口,当您从表格的顶部到底部时错位会增加:
我正在UITableViewController
内设置每个单元格的块:
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// Get a new or recycled cell
BNRItemCell *cell =
[tableView dequeueReusableCellWithIdentifier:@"BNRItemCell"
forIndexPath:indexPath];
// Set the text on the cell with the description of the item
// that is the nth index of items, where n = row this cell
// will appear in on the tableview
NSArray *items = [[BNRItemStore sharedStore] allItems];
BNRItem *item = items[indexPath.row];
// Configure the cell with the BNRItem
cell.nameLabel.text = item.itemName;
cell.serialNumberLabel.text = item.serialNumber;
cell.valueLabel.text = [NSString stringWithFormat:@"$%d", item.valueInDollars];
cell.thumbnailView.image = item.thumbnail;
cell.actionBlock = ^{
NSLog(@"Going to show image for %@", item);
if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPad){
NSString *itemKey = item.itemKey;
// if there is no image, we don't need to display anything
UIImage *img = [[BNRImageStore sharedStore] imageForKey:itemKey];
if (!img) {
return;
}
BNRImageViewController *ivc = [[BNRImageViewController alloc] init];
ivc.image = img;
ivc.modalPresentationStyle = UIModalPresentationPopover;
ivc.preferredContentSize = CGSizeMake(380, 300);
CGRect frame = [self.view convertRect:cell.thumbnailView.bounds
fromView:cell.thumbnailView];
// frame.origin.y -= 150;
UIPopoverPresentationController *popoverController = ivc.popoverPresentationController;
popoverController.permittedArrowDirections = UIPopoverArrowDirectionUp;
popoverController.sourceView = cell.thumbnailView;
popoverController.sourceRect = frame;
[self.navigationController presentViewController:ivc animated:YES completion:nil];
}
};
return cell;
}
单击可自定义UITableViewCell
:
@implementation BNRItemCell
- (IBAction)showImage:(id)sender
{
if (self.actionBlock) {
self.actionBlock();
}
}
@end
actionBlock
是property
BNRItemCell
非常感谢任何帮助。
答案 0 :(得分:4)
尝试类似:
CGRect frame = [cell.view convertRect:cell.thumbnailView.frame toView:self.view];
这里的诀窍是bounds
和frame
之间的区别。在按钮的情况下,当您查看其超视图时,其框架就是它的位置(例如42,42)。但是,界限是按钮相对于自身及其自身坐标(0,0)的位置。
不要嘲笑我的画(我不是设计师),但这可能会有所帮助:
你问按钮(或者你的情况是UIImage)“你在哪里相对于superview”(在这种情况下基本上是整个屏幕)。您可以使用convertRect: toView:
执行此操作。您将缩略图的框架(不是其边界)转换为其坐标在超视图上的位置。