开发者

Switching Between Subviews in iPhone App

开发者 https://www.devze.com 2023-01-01 13:06 出处:网络
So, in an iPhone app I am working on, I\'ve decided that the best way to display all the contents to the user is to have the top part of the screen show some information, and the bottom of the screen

So, in an iPhone app I am working on, I've decided that the best way to display all the contents to the user is to have the top part of the screen show some information, and the bottom of the screen show different information. However, the bottom part will change sometimes, so I was working on implementing that.

Another app that does this 开发者_如何学Pythonis the MTGLife app, here are some pictures:

http://picasaweb.google.com/lh/photo/HILMaJPnbLxP6hQRkn_6XA?feat=directlink http://picasaweb.google.com/lh/photo/d5wpS8x_aRyAEOBpYYIxwQ?feat=directlink http://picasaweb.google.com/lh/photo/RW-BQfqx-VytRim3BxeRZQ?feat=directlink

You see that upon hitting a button, the picker switches over and displays the log. Hitting the same button switches them back, with a pretty animation. I would like to do the same thing in my application. I'm not sure the best way to go about it though...

I was thinking that I would make 2 UIViews, and then would simply flip between them, but I want to get some opinions first on how to do this, and then a push in the right direction.

Thank you!


The 2 UIViews is a good approach. By using the UIView animations functions, you can switch between the Log and the Picker with the desired transition.

In the UICatalog sample application (see TransitionViewController), there an example on how to animation two subviews

0

精彩评论

暂无评论...
验证码 换一张
取 消