xcode - IOS: show a view when an app start -
xcode - IOS: show a view when an app start -
everytime launch app want show view , view should disappear on own (example @ start see view in 3 sec disappear alpha alter 1.00 0.00) how can it?
you can nowadays image in modal view app delegate. can utilize simple animation transition alpha 1.0 0.0, e.g.
imageview.alpha = 1.0; [uiview beginanimations:nil context:null]; { [uiview setanimationcurve:uiviewanimationcurveeaseinout]; [uiview setanimationduration:3.0]; [uiview setanimationdelegate:self]; [uiview setanimationdidstopselector:@selector(dismissmodalselector)]; imageview.alpha = 0.0; } [uiview commitanimations];
use dismissmodalselector
set method removes modal view.
it help set default.png
image 1 wish display, , may want have shorter animation since default appear sec or two.
ios xcode view
Comments
Post a Comment