このコードは、現在のサブビューにサブビューを追加することでループします(これはカードゲームです)...
//Creates the Card's view and adds it to the cardContainerView
CardView *cardView = [[CardView alloc]initWithFrame:CGRectMake(0, 0, 67,99)];
[cardContainerView addSubview:cardView];
//Assign the UIGesture to the CardView
//For panning and dragging
UIPanGestureRecognizer *panGesture = [[UIPanGestureRecognizer alloc]initWithTarget:self action:@selector(handlePanGesture:)];
[cardView addGestureRecognizer:panGesture];
...取引が完了したら、タッチジェスチャでカードを選択してドラッグします。このシーケンスでは、そのカードを他のすべてのカードの上に置いておきます(ソリティアのように、1枚のカードからカードを追加します)。別の列へ)