상황이 처럼 iOS5를 작업하지 않는 UIImageView
는 UIView의에 imvObj이 vwObj라고 말하고이 모든 설정은 UITableViewCell
안에 있습니다. vwObj에 UIPanGestureRecognizer
을 추가했습니다. 이 일은 매우 잘 작동하고 있습니다. iOS
< 5.0. 도와주세요.UIPanGestureRecognizer 내가 가진
편집
UIPanGestureRecognizer *panGesture = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(someOtherMethod:)];
[panGesture setDelegate:self];
[panGesture setMaximumNumberOfTouches:1];
[vwObj addGestureRecognizer:panGesture];
[panGesture release];
솔루션
만 제거 다음 라인과 문제가
[panGesture setDelegate:self];
정보가 충분하지 않습니다. "UIPanGestureRecognizer를 추가하는 것만으로는 충분하지 않습니다."; 그 자체로 모든 것을하지는 않습니다. 제스처 인식기에 응답하는 액션 핸들러가 있어야합니다. 이것이 어떻게 설정되고, 코드를 보여주고, 작동하지 않는 것이 무엇인지 명확하게 설명하십시오. – matt