Help with Simple IOS App that cant be done in XCODE(Any version)

I have a great idea for an IOS App. But for some reason I cant do it in XCODE nor GameSalad. It is an education app for the kiddies. At the heart of it are pre-defined objects (JPEGS). When you click on an object(JPEG) it is suppose to Randomly change to one of the other Object(JPEGS) randomly. Then if the user clicks and drags the object (JPEG) it is suppose to move in that direction at a pre-determined rate of speed no matter how fast the user swipe. To compound my problem for this simply app there are Objects(jpegs) that are support to automaically scolls down from top to bottom on its own at a pre-determined rate of speed. [import]uid: 129562 topic_id: 22326 reply_id: 322326[/import]

though this is not an xcode forum, if you are a developer, you can do all of what you said in obj-c using xcode as well as with CoronaSDK. [import]uid: 3826 topic_id: 22326 reply_id: 88977[/import]

In objC you use NSImageView to show images and touchesBegan/touchesEnded events to detect touches.

You will need a variable that saves the last position of the touch to calculate the direction of the swipe on the base of the actual touch position.

Once you have the direction parameters, you can move the image to that direction.

Same goes for corona sdk, but instead of NSImageViews and touchesBegan/touchesEnded you’ll have display objects and touch event phases.

-finefin [import]uid: 70635 topic_id: 22326 reply_id: 89045[/import]