2013-10-16 71 views
3

我試圖在UICollectionView上實現雙指展開,並遇到一些麻煩。與我可以找到的所有示例代碼不同,我沒有將它作爲交互式UINavigationController轉換的一部分 - 我只需要就地擴展項目。UICollectionView交互式轉換拋出異常

這裏是我的捏手勢識別:

- (void)pinchGestureDidPinch:(UIPinchGestureRecognizer *)recognizer 
{ 
    CGFloat targetScale = 3.0; 
    CGFloat scale = recognizer.scale; 
    if (recognizer.state == UIGestureRecognizerStateBegan) { 
     CGPoint point = [recognizer locationInView:self.collectionView]; 
     NSIndexPath *rowUnder = [self.collectionView indexPathForItemAtPoint:point]; 
     self.pinchingRow = [NSIndexPath indexPathForItem:0 inSection:rowUnder.section]; 
     self.currentState = HACStreamViewControllerTransitioning; 
     self.expandedLayout.expandedSection = self.pinchingRow.section; 
     self.transitionLayout = [self.collectionView startInteractiveTransitionToCollectionViewLayout:self.expandedLayout completion:nil]; 
    } else if (recognizer.state == UIGestureRecognizerStateEnded || recognizer.state == UIGestureRecognizerStateCancelled) { 
     if (scale >= targetScale) { 
      [self.collectionView finishInteractiveTransition]; 
      self.currentState = HACStreamViewControllerExpanded; 
     } else { 
      [self.collectionView cancelInteractiveTransition]; 
      self.currentState = HACStreamViewControllerCollapsed; 
     } 
    } else { 
     // change 
     CGFloat progress = MIN(targetScale/scale, 1.0); 
     progress = MAX(0.0, progress); 
     self.transitionLayout.transitionProgress = progress; 
     [self.transitionLayout invalidateLayout]; 
    } 
} 

調用startInteractiveTransitionToCollectionViewLayout:導致異常,但:

0 ???         0x0fcf577f 0x0 + 265246591, 
1 UIKit        0x01e1f582 -[UICollectionViewTransitionLayout setTransitionProgress:] + 643, 
2 UIKit        0x01d13053 -[UICollectionView _setCollectionViewLayout:animated:isInteractive:completion:] + 658, 
3 UIKit        0x01d12be8 -[UICollectionView setCollectionViewLayout:] + 225, 
4 UIKit        0x01d15e0a -[UICollectionView startInteractiveTransitionToCollectionViewLayout:completion:] + 821, 
5 HAW Couples       0x0001beae -[HACStreamViewController pinchGestureDidPinch:] + 782, 
6 UIKit        0x01a74f8c _UIGestureRecognizerSendActions + 230, 
7 UIKit        0x01a73c00 -[UIGestureRecognizer _updateGestureWithEvent:buttonEvent:] + 383, 
8 UIKit        0x01a7566d -[UIGestureRecognizer _delayedUpdateGesture] + 60, 
9 UIKit        0x01a78bcd ___UIGestureRecognizerUpdate_block_invoke + 57, 
10 UIKit        0x01a78b4e _UIGestureRecognizerRemoveObjectsFromArrayAndApplyBlocks + 317, 
11 UIKit        0x01a6f248 _UIGestureRecognizerUpdate + 199, 
12 UIKit        0x0173bd4a -[UIWindow _sendGesturesForEvent:] + 1291, 
13 UIKit        0x0173cc6a -[UIWindow sendEvent:] + 1030, 
14 UIKit        0x01710a36 -[UIApplication sendEvent:] + 242, 
15 UIKit        0x016fad9f _UIApplicationHandleEventQueue + 11421, 
16 CoreFoundation      0x033988af __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15, 
17 CoreFoundation      0x0339823b __CFRunLoopDoSources0 + 235, 
18 CoreFoundation      0x033b530e __CFRunLoopRun + 910, 
19 CoreFoundation      0x033b4b33 CFRunLoopRunSpecific + 467, 
20 CoreFoundation      0x033b494b CFRunLoopRunInMode + 123, 
21 GraphicsServices     0x042619d7 GSEventRunModal + 192, 
22 GraphicsServices     0x042617fe GSEventRun + 104, 
23 UIKit        0x016fd94b UIApplicationMain + 1225, 
24 HAW Couples       0x0000eefd main + 141, 
25 libdyld.dylib      0x03bd5725 start + 0 

異常的消息:

*** setObjectForKey: object cannot be nil (key: actualAttribute) 

我驗證過我的「目標」UICollectionViewLayout是很好的。以下替代(用自來水觸發)正常工作,並且動畫預期:

[self.collectionView setCollectionViewLayout:self.expandedLayout animated:YES completion:^(BOOL finished) { 
}]; 

回答

3

我有完全同樣的問題,在我的情況下,在佈局中的一個自定義佈局,另一個出現這種崩潰是UICollectionViewFlowLayout。我仍在研究這個問題,但我想知道你是否有相同的設置。

編輯1) 在我的自定義佈局中,我有裝飾視圖,並且我在[UICollectionViewLayout layoutAttributesForElementsInRect:]操作中爲裝飾視圖返回了UICollectionViewLayoutAttributes。我在刪除裝飾視圖的佈局屬性後進行測試,現在它完美地工作。在一個佈局中查看其他佈局中不存在的佈局似乎是個問題,當我找出更多信息時,我會更新我的答案。

+1

是的,我有同樣的問題,這是從不正確的裝飾視圖跟蹤。 – Kelan