开发者

view swapping techniques

I want to hear developers opinions on the best way to swap views on the iphone.

For example, I have a tab bar and one of its tabs defaults to a login view. When The user logs in the view changes to a logged in view.

I was going to just use one view controller and have all the content in one xib hiding and showing content as nee开发者_如何学Goded but this seems in no way elegant.

Secondly I was considering having one viewcontroller and simply swapping the xib. I'm a litle reluctant to try this as I've read in an article or 2 that it can lead to memory leaks.

Finally I was considering using 2 view controllers with with 2 seperate xibs. My gut tells me this would probably be the "proper" solution but I so far have failed to hunt down any sample code on the correct way to do it.

Can you offer advice on the best way to solve this problem? Is there a technique that I have not listed? Thanks.


I would keep the logic for which view to show in the view controller. The XIB is the view itself, and should have no objects in it that are transient or not always visible for that particular view.

Your second approach (of swapping the views) seems to be the right approach to me, and is always something I, personally, do in these situations. I am not aware of any memory issues if you do it right (remove from superview, followed by loading the new view as a subview of the controller's view). You could perform any custom initialization once the new XIB has been loaded and before showing it to the user.

Multiple view controllers just seems superfluous as then you would ideally require another top level controller to manage the two view controllers.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜