Questions tagged [three20]

Three20 is an open-source Objective-C library originally created at Facebook, that provides a number of features for people writing iOS (iPhone/iPad) applications.

External resources:

883 questions
2
votes
3 answers

Three20 + Core Data Simple Example

I've combed through SO, the Google group, and the blog-o-sphere trying to find an example of how to get the Three20 library to work with Core Data, and have not found much to speak of. Does anyone here know where I could find a simple tutorial (or…
Neal L
  • 4,329
  • 8
  • 34
  • 39
2
votes
1 answer

Load TTNavigator when needed,Show another viewController without persisting it in Navigator

I am making an application in which user needs to login/sign up, if the application opens for the first time or there are no default login info available. This login/signup view is regular UIViewController View. Now, I have a MainMenu View which is…
Dar
  • 185
  • 2
  • 12
2
votes
1 answer

TTURLRequest and sending POST data

I'm three20 for first time on an iOS app, and I'm stuck on something I can find more information. I'm trying to send some POST data to my local server, but everytime I got a response : Error. If I try with GET parameters I have no problem. The code…
david
  • 200
  • 1
  • 14
2
votes
1 answer

Pushing two UIViewControllers with a single URL in TTNavigator (Three20)

I am working on a core data app with three20. I have a specific situation where I have to show the Detailed View on an entity when a launcher button is clicked. I also want to push the list of all the entities before I push this detail view. To be…
2
votes
1 answer

How to change TTStyledTextLabel link font

I tried setting the font property on TTStyledText as well definition a TTStyleWithFont but both do not work?
user210504
  • 1,749
  • 2
  • 17
  • 36
2
votes
1 answer

What is ttstyledlayout

Can someone explain how TTStyledLayout can be used?
user210504
  • 1,749
  • 2
  • 17
  • 36
2
votes
2 answers

How to adjust width of TTStyledTextLabel?

I am implementing an IM app on iOS. I found that three20 library has a TTStyledTextLabel which provides cool features like showing images and url links. However I want to embed the TTStyledTextLabel in a message bubble (just like the sms app shipped…
Chi Zhang
  • 771
  • 2
  • 8
  • 22
2
votes
2 answers

How can i reload TTLaucherView with new items?

I am using Three20 for my new iOS project. I have impletemented TTLauncherView & TTTabStrip, and both are displaying correctly. Now i want to load new items in TTLaucherView on selection of TTTabStrip. How should i go about it ? I can't find any…
2
votes
1 answer

How to pop a modal view with Three20?

I have a modal view controller name: ComposeMessageViewController. And main view controller name: MainViewController. In MainViewController i map an URL to ComposeMessageViewController like this: [map from:@"up://home/messages/compose_message/"…
asedra_le
  • 3,079
  • 8
  • 38
  • 56
2
votes
2 answers

libxml/tree.h no such file or directory after integrating three20 library

i am getting Libxml/tree.h:No such file or directory error and other xml related error after adding three20 library to my project. i have added -lxml2 to other linker flags i have added /usr/include/libxml2 to header search path. but still getting…
Kshitiz Ghimire
  • 1,716
  • 3
  • 18
  • 37
2
votes
3 answers

TTNavigator popViewController?

Is there a TTNavigator equivalent to UINavigationController's popViewController? (or an alternative method to dismiss a view controller that I can't find?)
thebossman
  • 4,598
  • 11
  • 34
  • 45
2
votes
1 answer

Making TTLauncherView open animated items

I'm currently working with Three20 in an iOS project. I've got the TTLauncherView displaying with a few icons. However, I can't see to get them to open their views in an animated fashion as with the Facebook app. I've tried: [[TTNavigator…
joshholat
  • 3,371
  • 9
  • 39
  • 48
2
votes
3 answers

Three20 TTTableViewController cell height

I'm trying to change the height of the cells in my TTTableViewController from the three20 library. I'm using TTTableRightImageItem and I want the height to be determined by the height of the image and not the fixed height. Do I have to subclass…
Noam
  • 3,341
  • 4
  • 35
  • 64
2
votes
5 answers

Optimizing binary app size on iPhone / iPod touch

I know that a user can only download up to 20MB over 3G, and my build/Release-iphoneos is showing my app at 26MB. I'm linking against the three20 iPhone framework. Is this the final size that will count against the 20MB max when submitted to the App…
James
  • 1,689
  • 3
  • 17
  • 21
2
votes
0 answers

Three20, different images for portrait and landscape orientation possible?

I am using three20 to present a photo essay of a story I made after the February earthquake in Chile. I would like the app to display portrait type images when iPad device is in portrait orientation and landscape type images when iPad device is in…