individualtermite
individualtermite

Reputation: 3765

Using TTMessageController by -pushViewController

TTMessageController (from the Three20 framework) was recommended to me to replicate the email creation behavior. However, I am running into a bit of a problem integrating it with my application. The rest of my application uses a UINavigationController in order to show the various UIViewControllers, but it doesn't seem that TTMessageController works when called by -pushViewController. When I attempt to use pushViewController for a TTMessageController, the size of the view becomes smaller and the buttons on the navigation bar stop working. If anyone could give me any advice regarding how to show the TTMessageController correctly using this method, please let me know.

Thanks for any help!

Upvotes: 0

Views: 1386

Answers (2)

Thomas Decaux
Thomas Decaux

Reputation: 22681

You should use also the TTNavigator component from the Three20 library.

For instance, basic navigationController doesnt not dispatch appear/disappear events ... so I assume Three20 components work better together !

Upvotes: 0

Jasarien
Jasarien

Reputation: 58448

You should present it modally, using presentModalViewController:animated:.

Upvotes: 1

Related Questions