Skip to main content

All Questions

2 votes
0 answers
82 views

How to drag and drop UIButton title to another button title but the original button remain in same place objective c?

I have created Uibutton programmatically as grid in scrollview.Now I need to drag and drop the UIbutton title to another button.But the original button title should remain same.I searched ...
iniyan's user avatar
  • 131
7 votes
3 answers
3k views

UIControlEventTouchDragExit triggers when 100 pixels away from UIButton

At present, the UIControlEventTouchDragExit only triggers when I drag 100 pixels away from the button. I'd like to customize this behavior and bring that range in to around 25 pixels, but I'm ...
Luke's user avatar
  • 9,650
1 vote
1 answer
3k views

Drag and Drop Image from UITableviewCell to other View

I am working on a iPhone app, where I need to drag an image from UITableViewCell and drop it in some other UIView outside the tableview. (imageview added as :[cell.contentView addSubview:imageView])....
Samir Jwarchan's user avatar
0 votes
1 answer
334 views

Touch Event Detection in UIImageView inside UITableViewCell

I am trying to detect a touch event in UIImageView which is added in UITableViewCell's contentView. But, Imageview is not triggering the touch event, i have enabled the imageview userinteraction too. ...
Samir Jwarchan's user avatar
1 vote
3 answers
1k views

Rotate around circle

I need to implement the following application in objective c >> http://bit.ly/rHzVkF How can I rotate a circle by draging like in the app ? Do you know some similar examples ?
ihkawiss's user avatar
  • 986
9 votes
2 answers
8k views

Drag UIView between UIViews

I have a UIView object X that is contained in an UIView object A. I want to be able to touch X and remove it from object A and move it into object B (another UIView). Both Object A & B are inside ...
Kendall Hopkins's user avatar