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
0
votes
2 answers

three20 - loading external Data for TTViewController

i created a TTViewController that should show some Informations from a external (web) source. i already worked with some TTableViewControllers where i used the TTModel System (i created a TTURLRequestModel and a TTListDataSource for my…
choise
  • 24,636
  • 19
  • 75
  • 131
0
votes
2 answers

UITextField: Text Entered Programmatically but not Visible in the Text Field

I have a weird behaviour that has only shown up in the last week. I don't use IB, all the controls are created in code. I have a text field with a keyboard active. The first time I load the text field and use the keyboard, everything works normally.…
mamcx
  • 15,916
  • 26
  • 101
  • 189
0
votes
1 answer

three20 App crashes after some view changes

first, i followed this tutorial: three20 github tutorial i have a memory management problem i think, which crashes my application. i think, _properties in my postsModel crashes my application. the first time i launch my application and changing view…
choise
  • 24,636
  • 19
  • 75
  • 131
0
votes
1 answer

Reloading TTableView after DataSource items are added

This is the code of my initializer: if (self = [super init]) { self.title = @"Posts"; self.variableHeightRows = YES; //XLog(""); PostsDataSource *dataSource = [[[PostsDataSource alloc] init] autorelease]; [dataSource.delegates…
choise
  • 24,636
  • 19
  • 75
  • 131
0
votes
1 answer

Three20 TTThumbsViewController

I need to show some images in my app. So, I decided to use three20 and especially the TTThumbsViewController. i have tried to put it in my tabbar application, but it doesn't work. What I have to do?? Is there another way to make an image…
Natio
  • 1
  • 2
0
votes
1 answer

How do I implement a basic menu navigation system with Three20?

I'm trying to get started with Three20 and just want to get a basic menu navigation system going. I'm looking for a way to create menu that's just a list view with static text. Selecting an item should be able to move to another menu or a different…
brantonb
  • 709
  • 7
  • 23
0
votes
1 answer

How to configure Three20 Lib so that it displays images of variable width/height

I'm using the Three20 library to display a photo gallery in my iphone app but the images are getting cut off when I click on them. Where do I specify in my Three20 lib (or preferably in my call to Three20) what the image dimensions should be?
Miriam P. Raphael
  • 2,633
  • 4
  • 26
  • 28
0
votes
1 answer

didSelectRowAtIndexPath not being called with TTTableViewController

The challenge: I'd like to do some action if the user touches a TableItem. The problem: The didSelectRowAtIndexPath method is never called? Did I miss something? PortfolioViewController.h @interface PortfolioViewController : TTTableViewController…
fabian
  • 5,433
  • 10
  • 61
  • 92
0
votes
1 answer

large scrollable "something" with TTStyledText in it

im searching for a solution of the following problem: i got a "larger" XHTML string that i want to display in an area that is scrollable. I already used TTStyledTextLabel for a small text-caption and it works pretty well. But now i want display it…
choise
  • 24,636
  • 19
  • 75
  • 131
0
votes
1 answer

How do I implement the protocols for the Three20 framework?

I've been trying to implement the Three20 framework in my iPhone SDK app. I'm a bit confused as to implementing the proper methods. Is there any guide as to what to implement in order to make the TTPhotoViewController work? I know how to implement…
Anthony Glyadchenko
  • 3,572
  • 7
  • 48
  • 66
0
votes
2 answers

Use Three20 URL-based Navigation with PureMVC?

is anybody already using Three20 URL-based Navigation with PureMVC? I am not sure where to implement the URL mapping. In the AppDelegate, Faceade, RootViewController? Thanks for helping.
fabian
  • 43
  • 1
  • 5
0
votes
1 answer

Receiving SIGABRT error when launching TTPhotoviewController in iPhone

Well I'm creating an iPhone application which contains some features like Cycle routes and a Photoviewer. For these Cycle routes im useing the Cloudmade api, and for the PhotoViewer im useing Three20's TTPhotoviewcontroller. These Cycle routes map…
Coppes
  • 41
  • 4
0
votes
2 answers

iPhone - TTPhotoViewController crops images

I am using a TTPhotoViewController subclass in my project to display a series of images downloaded from the web. Some of the images which are not the same aspect ratio as the iPhone's screen are cropped out. I tested this with square images of…
lostInTransit
  • 70,519
  • 61
  • 198
  • 274
0
votes
1 answer

TTThumbView + NavigationBar

I use an application with an UINavigationBar, in a part of my application I click on a button to use the the TTThumbViewController (MockPhotoSource), the problem is when I click back on the NavigationBar it seems to add the property of three20…
ludo
  • 1,479
  • 5
  • 25
  • 50
0
votes
1 answer

Implementing a UITabBar in my working Three20 application

I have a working application using Three20. It basically is a bunch of nested TTableView's. I would like to add a UITabBar to the bottom of my app, but am not sure how to start. I used the Three20 project templates available at…
postalservice14
  • 2,515
  • 4
  • 25
  • 33