[iPhone] customizing UIView animation run background color
[iPhone] customizing UIView animation run background color
- Subject: [iPhone] customizing UIView animation run background color
- From: Tharindu Madushanka <email@hidden>
- Date: Tue, 17 Nov 2009 21:02:53 +0530
Hi
I am using following method to flip between UIViews that have imageviews on
it as background. When I animate the views. I could see white background
color at animating time. Can I change this color. What I currently do is
like this.
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.25];
[UIView setAnimationCurve:UIAnimationCurveEaseInOut];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft
forView:self.view cache:YES];
[self.view exchangeSubviewAtIndex:1 withSubviewAtIndex:2];
[UIView commitAnimations];
while at animation time white background color is there. Could I change this
?
Thank you
-Tharindu
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden