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
1 answer

Three20: Image located above text within TTButton using TTStyles

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…
inottawa
  • 11
  • 3
0
votes
1 answer

How to style the text of a UITableViewCell?

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…
Alexis
  • 16,629
  • 17
  • 62
  • 107
0
votes
1 answer

touchesEnded is not calles when table is scrolled

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…
Luda
  • 7,282
  • 12
  • 79
  • 139
0
votes
1 answer

TTPhotoViewController resize after rotate

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…
amau96
  • 857
  • 1
  • 8
  • 19
0
votes
1 answer

Three20 json response storing into shared object accessible to multiple views

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…
0
votes
1 answer

TTStyledTextLabel text alignment not works when transform rotation is used

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]; …
g.revolution
  • 11,962
  • 23
  • 81
  • 107
0
votes
1 answer

I'm getting a Apple Mach-O Linker Error

I've imported the Three20 to my existing project and I'm getting this error. Please help! Ld…
user1493628
  • 111
  • 1
  • 1
  • 3
0
votes
2 answers

iPhone - App crashes on start up on iOS 3.x (_UIApplicationDidEnterBackgroundNotification)

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…
Tuyen Nguyen
  • 4,389
  • 7
  • 51
  • 77
0
votes
1 answer

Empty TTTableView embedded in TTTableView does not display "Empty" message

I have a TTTableView (_commentsItem) embedded in another TTTableView like so: self.dataSource = [DetailItemDataSource dataSourceWithObjects: @"", self.imageItem, @"", …
Michael Wilson
  • 800
  • 8
  • 15
0
votes
1 answer

how could i disable auto search for Three20 search bar

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…
leomayleomay
  • 553
  • 1
  • 7
  • 16
0
votes
1 answer

Hiding Three20 Navigation Bar Back Item

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…
topgun
  • 2,463
  • 8
  • 31
  • 46
0
votes
1 answer

Parsing JSON from PHP by SBJson

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(). …
nakazy
  • 31
  • 4
0
votes
1 answer

TTStyleSheet losing styles on reload

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…
Veeru
  • 4,936
  • 2
  • 43
  • 61
0
votes
2 answers

Android Gallery with Gridview & Thumbnails

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…
user754730
  • 1,341
  • 5
  • 31
  • 62
0
votes
1 answer

What are these mysterious borders in a TTableViewCell?

I have the following hierarchy in an IO application: . TTTableViewController, with the following elements .. @"" .. TTTableCaptionItem .. @"" .. TTTableSubtitleItemCell .. @"" .. TTTableTextItem .. @"" .. (other cells) .. TTTableViewItem ...…
Michael Wilson
  • 800
  • 8
  • 15
1 2 3
58
59