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
7
votes
4 answers

Three20 : how to pass a class of objects between 2 views

I have a TTableView. The items in this table a mapped to an url, so that when I click on an item, another view appear with informations about this item. All these informations are attributes of a class. So, how can I build my TTableTextItem URL in…
Harkonnen
  • 791
  • 2
  • 8
  • 21
7
votes
1 answer

Using Localizable.strings in iPhone application

I downloaded the three20 library: http://three20.info/ And I opened the TTCatalog sample project that comes with this library: http://img16.imageshack.us/img16/3183/screenshot20100302at752.png As you can see, there are lots of Localizable.strings…
bobo
  • 8,439
  • 11
  • 57
  • 81
7
votes
1 answer

Three20 library - subclass of TTPhotoViewController has an opaque navigation bar

I am using a TTPhotoViewController subclass from the Three20 library for showing images from a web location. The images load up fine but the navigation bar and toolbar show up with the default tint. I am using a nav bar with a custom tint (set in…
lostInTransit
  • 70,519
  • 61
  • 198
  • 274
7
votes
2 answers

Just how to you use TTStyledTextLabel?

All I want is to display some simple text in my viewController and have the hyperlinks autoparsed. When the user clicks on the link I want the control to somehow do a callback where I can do something with the URL. How can I achieve this? I've…
erotsppa
  • 14,248
  • 33
  • 123
  • 181
6
votes
2 answers

What technique is Facebook using to generate their news feed in their iPhone application?

I noticed a long time ago (when facebook updated their application after the new profiles were released) that the news feed and various other parts of the application are not being generated using your typical table views and cells. I believe this…
Ken
  • 626
  • 1
  • 8
  • 22
6
votes
2 answers

Are Facebook and Path using an open source library for their root navigation UI?

The latest update to Path includes a root navigation UI that is strikingly similar to the one Facebook included in v4 of their app a few months ago. Is there an open source version of this implementation or did Path build it from scratch? It doesn't…
bloudermilk
  • 17,820
  • 15
  • 68
  • 98
6
votes
5 answers

Set background image of navigation bar for all bars

since I updated to xcode 4.2 and iOS 5 following code has no effect: @implementation UINavigationBar (CustomNavBarBG) -(void)drawRect:(CGRect)rect{ UIImage *image = [UIImage imageNamed:@"navbar.png"]; [image drawInRect:CGRectMake(0, 0,…
DarkLeafyGreen
  • 69,338
  • 131
  • 383
  • 601
6
votes
2 answers

How to make the blue bar on the top disappear for tttableview with list datasource (program running on ios 5 beta)

There is a blue bar appearing on the top of my tttableview when the program is running on ios 5 beta, it was not there if I run the program on ios 4.3. The table is configured to use a list datasource. Does anyone know what the problem could be? Is…
Xiong Siyu
  • 61
  • 1
6
votes
2 answers

How can I make clickable links like the Twitter and Facebook app?

Possible Duplicate: How to make an expression clickable on iOS? On Twitter and Facebook, usernames like @ and hashtags like # are clickable, and do something native within the app. What is the best way to implement something like this? It would…
Sheehan Alam
  • 60,111
  • 124
  • 355
  • 556
6
votes
3 answers

Three20 v1.1 and Xcode 4

Is there an easy way of getting Three20 v1.1 to work under xCode 4? I followed the steps on http://three20.info/article/2011-03-10-Xcode4-Support but that seems to be for the master. I use v1.1 as I use the TTLauncher. The project builds fine with…
Luuk D. Jansen
  • 4,402
  • 8
  • 47
  • 90
6
votes
3 answers

How to remove Three20 from the project

Adding Three20 in your project has been made simple by the ttmodule.py script file. I was initially planning on using it in my project but i'm not, so i want to clean my project by getting rid of it. How can i remove it from my project?
Mustafa
  • 20,504
  • 42
  • 146
  • 209
6
votes
3 answers

iphone / ipad - Compile three20 under xcode 4?

anyone successfully compiled three20 under XCode 4? I tried, and changed all Base SDK to latest 4.2, but there is alway a error: error: There is no SDK with the name or path '..../three20/src/Three20Core/iphoneos4.0' in Three20UICommon and its Unit…
Jack
  • 3,913
  • 8
  • 41
  • 66
6
votes
2 answers

TTThumbsViewController + navigationController issue

I am only using Three20 for a gallery in my app. When I push my .. : TTThumbsViewController from another view, the navigation bar is not the color I want it to be (as per the rest of my app). I have set up a TTDefaultStyleSheet as per this…
michael
  • 124
  • 8
5
votes
2 answers

Strange layout issue on 3GS device with iOS 4.2.1 - Compiled with iOS 5

We had a strange bug report from a user who has iOS 4.2.1 on an iPhone 3GS. A lot of the UITextLabels in the app are offset at strange locations. Has anyone else come across this issue. The app is laid out correctly on all devices we have tested on…
Eamonn Fallon
  • 543
  • 5
  • 15
5
votes
5 answers

Three20 competitors/alternatives

I see three20 a very powerful lib, spicily because Facebook and Twitter use it. I just want to know if there are any competitors/alternatives for Three20? or even simple.
Ansd
  • 1,865
  • 3
  • 19
  • 30
1
2
3
58 59