在我的UITableViewCell子類我添加了一個平移手勢和gestureRecognizerShouldBegin
方法我檢查self.frame.origin.x
和self.frame.origin.y
都是0.000000 and 0.000000
和應用TranslationInView
CGPoint translation = [gestureRecognizer translationInView:[self superview]];
後,我得到x=-4.000000 and y=0.000000
試圖瞭解TranslationInView
如何TranslationInView
工作,我試圖總結我的頭在它周圍,當我獲得單元格0.0和0.0的正確位置時,因爲第一個單元格將具有0.0和0.0,爲什麼我需要TranslationInView
。