iOS (iPad) 在 UISplitViewController 中拖放

标签 ios ipad uisplitviewcontroller

我正在 UISplitViewController(基于 Xcode 模板项目)中进行 D&D,从 MasterViewController 到 DetailViewController。

基本上,我所做的是创建一个 UILongPressGestureRecognizer 并将其放置在 MasterViewController 的 self.tableview 属性上。

下面是我的手势识别器。

- (void)gestureHandler:(UIGestureRecognizer*)gesture
{
    CGPoint location;
    NSIndexPath* indexPath = [self.tableView indexPathForRowAtPoint:[gesture locationInView:self.tableView]];
    if (gesture.state == UIGestureRecognizerStateBegan) {
        // Create draggable view
        NSString* imageCanvasName = [self imageNameByIndexPath:indexPath isDetail:YES];
        UIImage* imageCanvas = [UIImage imageNamed:imageCanvasName];
        _draggedView = [[UIImageView alloc] initWithImage:imageCanvas];

        // Create drag-feedback window, add the drag-view and make the drag-window visible
        CGRect windowFrame = self.view.window.frame;
        _dragFeedbackWindow = [[UIWindow alloc] initWithFrame:windowFrame];
        location = [gesture locationInView:gesture.view.window];
        [_draggedView setCenter:location];
        [_dragFeedbackWindow addSubview:_draggedView];
        [_dragFeedbackWindow setHidden:NO];     
    }
    else if (gesture.state == UIGestureRecognizerStateChanged) {
        // Update drag-view location
        location = [gesture locationInView:gesture.view.window];
        [_draggedView setCenter:location];
    }
    else if (gesture.state == UIGestureRecognizerStateEnded)
    {
        // Disconnect drag-view and hide drag-feedback window
        [_draggedView removeFromSuperview];     
        [_dragFeedbackWindow setHidden:YES];

        // If drop is in a valid location...
        if ([self.tableView pointInside:_draggedView.center withEvent:nil] == NO)
        {
            // Get final location in detailViewController coordinates
            location = [gesture locationInView:self.detailViewController.view];
            [_draggedView setCenter:location];
            [self.detailViewController.view addSubview:_draggedView];
        }
    }
    else {
        NSLog(@"%s unrecognized gesture %d", __FUNCTION__, gesture.state);
    }
}

当 iPad 处于纵向模式时,一切都非常好 - 拖放 - 一切正常。

如果 iPad 旋转,我的问题就会出现... 在这种情况下,我的 _draggedView 会出现“反向旋转”——它将“反射(reflect)”iPad 的旋转——直到掉落。

这就像我必须对 _dragFeedbackWindow 应用一些旋转 - 但我尝试了很多东西,都失败了......

有什么想法吗?

谢谢!

最佳答案

好的 - 我想出了发生这种情况的“原因”,以及修复的“方法”(并将附加处理程序代码以正确执行此操作,所有内容如下。

这是代码...“只需”将它添加到您的 MAsterViewController(如果 - 像我一样 - 您想从主视图拖到细节...)

// A simple UIView extension to rotate it to a given orientation
@interface UIView(oriented)
- (void)rotateToOrientation:(UIInterfaceOrientation)orientation;
@end

@implementation UIView(oriented)
- (void)rotateToOrientation:(UIInterfaceOrientation)orientation {
    CGFloat angle = 0.0;    
    switch (orientation) { 
        case UIInterfaceOrientationPortraitUpsideDown:
            angle = M_PI; 
            break;
        case UIInterfaceOrientationLandscapeLeft:
            angle = - M_PI / 2.0f;
            break;
        case UIInterfaceOrientationLandscapeRight:
            angle = M_PI / 2.0f;
            break;
        default: // as UIInterfaceOrientationPortrait
            angle = 0.0;
            break;
    } 

    self.transform = CGAffineTransformMakeRotation(angle);
}

现在,长按手势处理程序...

- (void)gestureHandler:(UIGestureRecognizer*)gesture
{
    CGPoint location;
    UIWindow* dragFeedback = [UIApplication sharedApplication].delegate.window;
    if (gesture.state == UIGestureRecognizerStateBegan) {
        // Create draggable view
        _draggedView = [[UIImageView alloc] initWithImage:@"someImage.png"];

        // Required to adapt orientation... WORKS, BUT WHY NEEDED???
        [_draggedView rotateToOrientation:[[UIApplication sharedApplication] statusBarOrientation]];

        // Create drag-feedback window, add the drag-view and make the drag-window visible
        location = [gesture locationInView:dragFeedback];
        [_draggedView setCenter:location];
        [dragFeedback addSubview:_draggedView];
    }
    else if (gesture.state == UIGestureRecognizerStateChanged) {
        // Update drag-view location
        location = [gesture locationInView:dragFeedback];
        [_draggedView setCenter:location];
    }
    else if (gesture.state == UIGestureRecognizerStateEnded)
    {
        // Disconnect drag-view and hide drag-feedback window
        [_draggedView removeFromSuperview];     

        // Get final location in detailViewController coordinates
        location = [gesture locationInView:self.detailViewController.view];
        [_draggedView setCenter:location];
        // "Noramlize" orientation... WORKS, BUT WHY NEEDED???
        [_draggedView rotateToOrientation:UIInterfaceOrientationPortrait];
        [self.detailViewController.view addSubview:_draggedView];
    }
    else {
        NSLog(@"%s unrecognized gesture %d", __FUNCTION__, gesture.state);
    }
}

这就像一个魅力 - 让我知道它是如何为你工作的(如果你需要一个示例项目,让我知道......)

关于iOS (iPad) 在 UISplitViewController 中拖放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8722939/

相关文章:

iphone - 检查哪个请求来自 NSURLConnection 委托(delegate)

ipad - 在 IPAD 上关闭键盘

ios - UISplitViewController 中的自定义 UIBarButtonItem 不响应点击 (iPhone)

iOS 6.0 : UISplitViewController Popover broken or design changed by Apple?

c++ - iOS App 拒绝了 cocos2d-x 和 libCurl 上的非公共(public) api(SSL 相关)

ios - AVPlayer 和框架中的控制按钮

iOS应用程序更新过程

ios - InAppSettingsKit 动态单元格? (iPhone 和 iPad)

iOS 约束 : how to adjust UIButton width and height in a view?

uitabbarcontroller - Tabbarcontrol中UISplitview的旋转