Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ビュー内の多くのアニメーション化されたオブジェクト間でオブジェクトをタッチしてドラッグするコードを実装しました。これは機能します。ビュー内でどのオブジェクトに触れたかを知る必要があります。
各ビューにはNSIntegerタグ属性があり、Interface Builder のような UI または次のようなコードで設定できます。
NSInteger
UIView *view = [[UIView alloc] init]; view.tag = 20121221;
タグに関連付けられたビューを取得できます
[parentView viewWithTag:20121221];