我創建了一個圖像數組,並且它們以imageview開頭。用戶可以使用手勢拾取圖像,並將其拖放到單獨的圖像視圖中。他們可以來回移動他們,他們洗牌和組織自己,一切都很好。xcode查找UIImageview的內容
但我不知道哪些他們已經進入哪個imageview。如何識別哪個圖像存在於哪個imageview中。我可以查詢imageview中的內容嗎?
我看着標籤,並沒有多大幫助。
我產生數組所以
NSArray *pngs = [NSArray arrayWithObjects:@"red", @"blue", @"green", @"yellow", @"purple", @"orange", @"black", @"white", nil];
for (NSString *png in pngs) {
UIImage *draggableImage = UIImageWithBundlePNG(png);
UIImageView *draggableImageView = [[UIImageView alloc] initWithImage: draggableImage];
SEDraggable *draggable = [[SEDraggable alloc] initWithImageView: draggableImageView];
[self configureDraggableObject: draggable];
不知道在哪裏甚至開始。