Could someone please tell me how to make an image appear when the user taps the screen and make it appear at the position of the tap. Thanks in advance, Tate
|
|
The first parameter of each of those is an |
|||
|
|
|
It seems implied from the question that you want the user to be able to tap anywhere on the screen and have an image drawn where they tap? As opposed to tapping in a designated place and having the image appear there? If so, you're probably going to have to go with a custom view. In that case, you'd do something like the following:
For further details, this link might be worth a look. Hope that helps! EDIT: I've notice you've asked essentially the same question before. If you're not happy with the answers given there, it's generally considered better to "bump" the old one, perhaps by editing it to ask for further clarification, rather than create a new question. EDIT: As requested, some very brief sample code follows. This is probably not the best code around, and I haven't tested it, so it may be a little iffy. Just for clarification, the MyView.h
MyView.m
|
||||
|
|
|
You could create an initial star and just move it every time view is touched. I'm not sure what you're end result will look like. Note: This code will give you 1 star that moves with a tap Here is my code:-
|
||||
|
|