F fredlee macrumors newbie Original poster Nov 4, 2008 #1 does anyone know how can I flip a view from bottom in iphone?? could anyone hlep me?? thanks
J jnic macrumors 6502a Nov 5, 2008 #2 The following sample code demonstrates various ways of transitioning between views: http://developer.apple.com/iphone/library/samplecode/ViewTransitions/index.html
The following sample code demonstrates various ways of transitioning between views: http://developer.apple.com/iphone/library/samplecode/ViewTransitions/index.html
F fredlee macrumors newbie Original poster Nov 5, 2008 #3 jnic said: The following sample code demonstrates various ways of transitioning between views: http://developer.apple.com/iphone/library/samplecode/ViewTransitions/index.html Click to expand... y, I have read the samples, but I want to flip the view, there is no this mode in this sample
jnic said: The following sample code demonstrates various ways of transitioning between views: http://developer.apple.com/iphone/library/samplecode/ViewTransitions/index.html Click to expand... y, I have read the samples, but I want to flip the view, there is no this mode in this sample
F fredlee macrumors newbie Original poster Nov 6, 2008 #5 jnic said: Could you describe what you mean by "flip the view" then? Click to expand... like this:UIViewAnimationTransitionFlipFromLeft. This can flip view from left. I want flip view from bottom
jnic said: Could you describe what you mean by "flip the view" then? Click to expand... like this:UIViewAnimationTransitionFlipFromLeft. This can flip view from left. I want flip view from bottom
J jnic macrumors 6502a Nov 7, 2008 #6 For vertical flip you'll probably have to create your own transform. Docs here: http://developer.apple.com/document...ce/CGAffineTransform/Reference/reference.html I think the MyPhoto code example contains the transformation matrix you want: http://developer.apple.com/samplecode/MyPhoto/
For vertical flip you'll probably have to create your own transform. Docs here: http://developer.apple.com/document...ce/CGAffineTransform/Reference/reference.html I think the MyPhoto code example contains the transformation matrix you want: http://developer.apple.com/samplecode/MyPhoto/
F fredlee macrumors newbie Original poster Nov 10, 2008 #7 jnic said: For vertical flip you'll probably have to create your own transform. Docs here: http://developer.apple.com/document...ce/CGAffineTransform/Reference/reference.html I think the MyPhoto code example contains the transformation matrix you want: http://developer.apple.com/samplecode/MyPhoto/ Click to expand... y, I know how to vertical flip, I want to know how to horizonal flip, could you help me?
jnic said: For vertical flip you'll probably have to create your own transform. Docs here: http://developer.apple.com/document...ce/CGAffineTransform/Reference/reference.html I think the MyPhoto code example contains the transformation matrix you want: http://developer.apple.com/samplecode/MyPhoto/ Click to expand... y, I know how to vertical flip, I want to know how to horizonal flip, could you help me?
J jnic macrumors 6502a Nov 11, 2008 #8 If you'll take a moment to actually examine the links I've posted, you'll see that CGAffineTransform offers flips in any direction.
If you'll take a moment to actually examine the links I've posted, you'll see that CGAffineTransform offers flips in any direction.
F fredlee macrumors newbie Original poster Nov 11, 2008 #9 jnic said: If you'll take a moment to actually examine the links I've posted, you'll see that CGAffineTransform offers flips in any direction. Click to expand... y, I have tried to flip use CGAffine, BUT it looks not very good. If there is no other way, I have to choose this method
jnic said: If you'll take a moment to actually examine the links I've posted, you'll see that CGAffineTransform offers flips in any direction. Click to expand... y, I have tried to flip use CGAffine, BUT it looks not very good. If there is no other way, I have to choose this method