picture for some seconds
hi.
I know how touse a screen with a picture,
how can I do to show on the iphone screen a picture (480*320) just for 10 seconds
and then remove....
is there a kind to counter on xcode to do this please?
thanks a lot.
I know how touse a screen with a picture,
how can I do to show on the iphone screen a picture (480*320) just for 10 seconds
and then remove....
is there a kind to counter on xcode to do this please?
thanks a lot.
You could setup an NSTimer to go off in 10 seconds and, upon receiving the message triggered by the timer, hide the image.
thanks...
but when I get the code, where i have to paste...
next show the screen.... here?
delegate.m
[window addSubview:viewController.view];
[window makeKeyAndVisible];
[window addSubview:window1];
here?
[window addSubview:window2];
}
i found this, but i dont know how implement, and where,
please, could you giveme a hand ...
here is the url i found
http://developer.apple.com/documentation...000807-SW1
thanks a lot
but when I get the code, where i have to paste...
next show the screen.... here?
delegate.m
[window addSubview:viewController.view];
[window makeKeyAndVisible];
[window addSubview:window1];
here?
[window addSubview:window2];
}
i found this, but i dont know how implement, and where,
please, could you giveme a hand ...
here is the url i found
http://developer.apple.com/documentation...000807-SW1
thanks a lot
Place the second addsubview in another function then use
[self performSelector:@selector(FUNCTION_NAME) withObject:nil afterDelay:10.0];
to call that function in 10 seconds
[self performSelector:@selector(FUNCTION_NAME) withObject:nil afterDelay:10.0];
to call that function in 10 seconds
Possibly Related Threads...
| Thread: | Author | Replies: | Views: | Last Post | |
| picture before app ? | imaumac | 4 | 2,350 |
Nov 1, 2008 07:37 AM Last Post: imaumac |
|
| problems blitting a picture to the screen | petr6534 | 4 | 3,552 |
Oct 20, 2004 04:18 PM Last Post: petr6534 |
|

