-1
A
回答
1
如果你想移動整個文本字段,那麼您可以使用此代碼:
注意您必須聲明像userIsTouching一個布爾值,在你的頭
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
// Check if the user's touch is within the textfield
CGPoint touch = [[touches anyObject] locationInView:self.view];
if (CGRectContainsPoint(textField.frame, touch)) {
userIsTouching = YES;
}
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
if (userIsTouching) {
textField.center = [[touches anyObject] locationInView:self.view];
}
}
// Obviously, you then have to set the userIsTouching variable to NO when the user releases the touch
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
userIsTouching = NO;
}
類似的東西應該這樣做。
+0
感謝您的回覆 – praveen
相關問題
- 1. 如何將文本從一個地方移動到另一個
- 2. 將值從一個地方傳遞到另一個地方
- 3. 將文件複製到SD卡。 (從一個地方到另一個地方)
- 4. 如何將對象從一個地方移動到另一個地方
- 5. 瞬移一些HTML從一個地方到另一個地方
- 6. 將一個字符串從一個地方複製到另一個地方
- 7. 從GWT中的一個地方導航到另一個地方
- 8. 如何讓精靈從一個地方移動到另一個地方
- 9. Java將玩家從一個地方移動到另一個地方
- 10. SSIS將數據從一個地方移動到另一個地方
- 11. 將5列從一個表到另一個地方,但到
- 12. 地方在另一個DIV
- 13. JSON在一個地方工作,但不是另一個地方
- 14. 創建從一個地方到另一個地方的路徑動畫
- 15. 在NSFileManager中將文件從一個地方複製到另一個地方時出現錯誤
- 16. 獲得這個地方在一個Qtreewidget和擴大到另一個地方
- 17. 用於將文件從一個地方複製到另一個地方的批處理文件
- 18. 從一個地方
- 19. 從一個地方
- 20. 如何從一個地方移動文件夾到另一個SVN
- 21. 將日曆事件從一個地方移動到另一個地方時顯示懸停文字
- 22. 用於將某些文件類型從一個地方複製到另一個地方的DOS命令
- 23. 如何將一個本地端口轉發到另一個本地端口?
- 24. 從一個地方移動JsValue到另外一個JsObject
- 25. 複製從一個地方到另一個
- 26. 從另一個地方啓動本地iPhone應用程序
- 27. 在android中的Google地圖中查找從一個地方到另一個地方的路線?
- 28. 如何將LoginForm移動到另一個地方
- 29. 如何將gitolite目錄移動到另一個地方
- 30. 如何將`圖像`一個地方移動到特定時間間隔的另一個地方
原生或webapp? –