2011-07-07 106 views
0

我有一個需要在標籤上滑動並在滑動標籤後滑動的情況,它應該帶我到另一個視圖。 這是可能的。該標籤應該是自我解釋性的,因爲它應該改變顏色並且應該獲得閃爍的效果,以便用戶知道在那裏滑動。在標籤上滑動sholud將一個視圖移動到另一個視圖

請給我建議。

感謝 RIZWAN

回答

0

做的最好的事情是創造一種姿態和手勢附加到的UILabel,繼承人一個簡單的例子

UISwipeGestureRecognizer *swipe; 
swipe = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(Gest_SwipedLeft:)]; 
[swipe setDirection:UISwipeGestureRecognizerDirectionLeft]; 
[label addGestureRecognizer:swipe]; 
[swipe release]; 

然後簡單地將你的代碼推下一個筆尖

-(void)Gest_SwipedLeft:(UISwipeGestureRecognizer *) sender 
UI_iPad_View *controller = [[UI_iPad_View alloc] initWithNibName:@"ipadview" bundle:nil]; 
[[self navigationController] pushViewController:controller animated:YES]; 

// Cleanup 
[controller release], controller = nil; 
} 
相關問題