I have a tab bar based application that needs to show certain views. There are certain开发者_Python百科 "screens" that are not part of the tabs. In those cases is it wise to use presentModalViewController or just to "insert the view".
Any thoughts on this will be appreciated.
I would definitely use presentModalViewController
. It's easier to write and maintain and the free animation provides extra feedback to the user. I don't see why you wouldn't want to use it.
精彩评论