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'm trying to style a TTButton to appear like the following:
http://tinypic.com/r/29c3oyh/6
You'll notice that the image and the text are both center aligned within the TTButton and that the image is above the text. No matter what combination of…
How to style the text of a UITableViewCell using Three20 TTStyledTextLabel ?
I tried :
TTStyledTextLabel* label = [[[TTStyledTextLabel alloc] initWithFrame:CGRectMake(0, 0, 300, 60)] autorelease];
NSInteger i = ...;
NSString *s = [NSString…
I have a TTTableViewController table , with TTTableLinkedItemCellcells.
In the cell I have -(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event; function.
This function is called only when the table is clicked, but not when it is…
when I push a TTPhotoViewController (three20), I got this result :
http://twitpic.com/a4vr5f
then, I rotate the device and get :
http://twitpic.com/a4vra5
Is someone knows why three20 doesn't resize the picture to get a full screen landscape? and…
I am new to iPhone development and Three20 framework. I created a simple login controller which returns user details as json response from PHP. i need to store json response into an object or something which can be shared on other views, for example…
I am having a problem with Three20's TTSTyledTextLabel. i have specified the view like this
//iphone properties
htmlSubtitle_ = [[TTStyledTextLabel alloc] init];
htmlSubtitle_.font = [UIFont systemFontOfSize:14];
…
I have Three20 in my app which supports iOS 3.0 and above.
When I run the app with iOS 3.0, iOS 3.1, the app crashes right away when launching.
Below is my crash report:
Date/Time: 2012-06-26 10:38:36.761 -0600
OS Version: iPhone OS…
I have a TTTableView (_commentsItem) embedded in another TTTableView like so:
self.dataSource = [DetailItemDataSource dataSourceWithObjects:
@"",
self.imageItem,
@"",
…
I am using Three20 framework, and the auto search feature make the searching really slow, i'd like to disable the auto search and fire the searching once the user clicks on the "Search" button on the pad.
Is there any way i can disable the auto…
I am sort of newbie in Three20 world, and I am trying to hide the back/left button in navigation bar.
Below is the method I am calling to hide it:
[[TTNavigator navigator].topViewController.navigationController.navigationItem…
Now I'm trying to POST jpeg files to MySQL via PHP and GET from MySQL to iOS.
In GET method I encode jpeg(as NSData) and some related data(ex. caption, timestamp) to JSON on PHP script using json_encode().
…
I am having a TTStyledSheet which works fine on load. But when i reload the view, the styling is lost.
I have a UITableViewController
Each cell in the tableview has a TTStyledTextLabel
I have a reload mechanism for the tableview
When the view…
For my App I need a gallery (Gridview) with remote images (URLs of original and thumb are getting parsed by a JSON file) where it shows the thumbnails and on a click it loads the original sized image (async would be best...)
I have seen this on…
I have the following hierarchy in an IO application:
. TTTableViewController, with the following elements
.. @""
.. TTTableCaptionItem
.. @""
.. TTTableSubtitleItemCell
.. @""
.. TTTableTextItem
.. @""
.. (other cells)
.. TTTableViewItem
...…