Hi All,
I am using the following code for page curl animation
[UIView beginAnimations:@"yourAnim" context:nil];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:yourView cache:cacheFlag];
...
[UIView commitAnimations];
Is it possible to make the half curl animation like the maps.app on iphone/ipod ?
Any ideas ho...
I have some pretty standard flipping action going on:
[UIView beginAnimations:@"swapScreens" context:nil];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.view cache:YES];
[UIView setAnimationDuration:1.0];
[self.view exchangeSubviewAtIndex:0 withSubviewAtIndex:1];
[UIView commitAnimations];
To Apple...
Hi!
I'm having a problem with UIViewAnimationTransitionCurlUp and landscape mode.
In my landscape application I have a view controller that manages two fullscreen views. In the controller I have a container view for the transitions. To switch between the two views, I use a curled transition but the animation is performed as if it were ...
Hello, I'm trying to animate my detail view controller to transition with a page curl (up/down). I'm trying to achieve a similar effect as the Notes application on the iPad, this transition was also reproduced by CulturedCode in their Things application for iPad.
My problem is that the animation is clipped to the bounds of the Detail V...
Hi,
I've got next problem:
I've nice worked flip animation, but when before animation i've rotate my device:
1/ Flip going by the horizontal axis (rather than vertical as it should)
2/ My controller.view (i've use controller.view) has previous orientation.
Where am I wrong?
thanks
...
I looked at Apple's UIModalTransitionStyle, but didn't see what I was looking for. I want to do the same thing that the Facebook iPhone App does; when you touch on a button on the Facebook's homescreen, the new UIView appears (and then disappears when you are done) from the middle of the screen. I would like to implement similar transi...
In Steve Jobs' keynote announcement of the iPhone SDK 4 earlier this year, one of the slides showed that a "Half curl page transition" was part of the new SDK:
I've looked through the iOS API docs and I can't seem to find this transition. Does anyone know where it is?
...
Hi,
I'm using the UIViewAnimationTransitionCurlUp \ UIViewAnimationTransitionCurlDown transitions to flip between view controllers.
Problem is when I try to support the upsidedown portrait orientation , these lovely curl transitions still think they are in normal portrait orientation, thus the curlup goes from top to bottom and the cur...
The removeFromSuperview method actually pulls off the image very quickly, is there a way to remove it in a animated fashion. thanks
...
i am using the following code to flip between two UIViews..
- (IBAction)switchView:(id)sender
{
UIView *mainView =View1.view;
UIView *flipsideView =View2.view;
[UIView beginAnimations:@"View" context:nil];
[UIView setAnimationDuration:1.00];
[UIView setAnimationTransition: UIViewAnimationTransitionCurlUp forView:self.view cache:YES...
I created a uibutton that when the user taps it, it performs this action
-(IBAction) showMyViewController:(id) sender {
MyViewController *mvc = [[MyViewController alloc] initWithNibName:@"MyViewController" bundle:nil];
[UIView beginAnimations:@"animation" context:nil];
[self.navigationController pushViewController: bmvc animat...
Hello,
I want to add a subview with animation. i am using add sub view so it is not showing any animation so i want to show any animation when i am doing this... i am using below code :-
UIViewController *vControllerHome = [[viewTemp alloc] initWithNibName:@"viewTemp" bundle:nil];
vControllerHome.view.frame =CGRectMake(0, 0, 320, 414);...
Hi there
I was messing with UIView animations and I found the setAnimationTransition method which takes certain constants.
One of them is UIViewAnimationTransitionCurlDown.
I was wondering if this type of transition was possible on a UIImage view and how would I go about implementing it?
Thanks
Tom
...
How can we implement the Horizontal page transition effect including the curl effect like iBook application did.
I am trying to get it from 3 days but no success.
Any suggestions or sample code would be appreciated.
I need it urgently.
Thanks in advance.
...
Hi,all,first thanks for reading the question with my poor english,there are two viewController in my project,and one is main controller another is it's subview controller use for insert into the main controller,i set the controller translate animation with UIViewAnimationTransitionCurlUp,the subView is 'autorotate' left or right, and bot...
I am unable to achieve any animation with the following code:
if (self.segmentControl.selectedSegmentIndex == 0) {
[UIView transitionFromView:tableView
toView:mapView
duration:1.0
options:UIViewAnimationTransitionFlipFromLeft
completion:nil
...