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.
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…
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.…
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…
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…
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…
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…
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?
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…
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…
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…
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.
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…
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…
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…
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…