0
ダムの質問ですが、touchesEndedを渡すことはできますか?私はそれにUIImageViewを渡したかったのです。私はこれに新しいです。 NSSetはNSObjectのサブクラスなので、NSSetを使ってUIImageViewを何とか渡すことができると考えていました。touchesに渡すEnded:withEvent:
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{
if (!isTouchingEmptyField) {
[UIView beginAnimations:nil context:nil];
piece.center = CGPointMake(48, 366);
[UIView commitAnimations];
}
}
どのビューを渡したいのですか。 –