Hello all,
As some of you may know, I am new to Objective C, having only programmed with Java in the past. I have made a simple application in Xcode and am really enjoying the learning experience. One thing that I want to do, though, is add an image, pause, and then remove the image when a certain condition is met. I also want to specify where the image appears on the screen. In plain English, I'm looking for something like this:
if(button is pressed)
{
add the image at bounds (200,150);
pause for half a second; // I want the image to remain on the screen for half a second
remove the image;
}
I essentially just want the image to flash over a certain part of the screen to highlight that area. Can anyone help me with this?
Thanks a lot,
JOD8FY
As some of you may know, I am new to Objective C, having only programmed with Java in the past. I have made a simple application in Xcode and am really enjoying the learning experience. One thing that I want to do, though, is add an image, pause, and then remove the image when a certain condition is met. I also want to specify where the image appears on the screen. In plain English, I'm looking for something like this:
if(button is pressed)
{
add the image at bounds (200,150);
pause for half a second; // I want the image to remain on the screen for half a second
remove the image;
}
I essentially just want the image to flash over a certain part of the screen to highlight that area. Can anyone help me with this?
Thanks a lot,
JOD8FY