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

How do you scroll to the bottom of a tableView if you don't know how many rows it has?

I know that we can scroll to the bottom of the UITableView in a regular UITableViewController by using: - (void)scrollToRowAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated Where…
aherlambang
  • 14,290
  • 50
  • 150
  • 253
2
votes
1 answer

Three20 Passing of Object

i would like to know that after passing object from view to view with URL, how to i pass it to the model so i can use it for web service and populate the datasource. Using Three20 (: Thanks.
Sydnal
  • 23
  • 2
2
votes
2 answers

How to push next view with TTNavigator?

I'm using a modified View-Based Application, where I have starting UIViewController showing a input control & a TTThumbsViewController showing the results. I'm passing them in the AppDelegate using TTNavigator initWithName: for the…
2
votes
1 answer

blank window with TTSplitViewController

I followed the same exact code as the TTCatalog example of TTSplitViewController, starting from the app delegate code, the TTSplitViewController code, and as well as the code for the TTTableViewController. However, when I run the apps I am getting a…
adit
  • 32,574
  • 72
  • 229
  • 373
2
votes
2 answers

XML Parser for ASIHTTPRequest

What XML Parser Library can i use that is best for parsing XML Response string from ASIHTTPRequest response? That is also easy to setup and can be easily understand, really need an immediate result for a project Thanks
Vincent Bacalso
  • 2,071
  • 4
  • 23
  • 34
2
votes
1 answer

Multiple requests in one TTURLRequestModel

I was using the facebook example code of three20 as a basis for a project, and I want to have two url requests in my TTURLRequestModel class, so that I will only use one TTListDataSource to render my objects.. For example, a url request for the post…
Vincent Bacalso
  • 2,071
  • 4
  • 23
  • 34
2
votes
1 answer

undeclared object but everything implemented

i implemented first three20 (first, with the python scrip) and then restkit (second,manual). i started adding some stuff to my app delegate, but then i get an error [RKObjectLoaderTTModel undeclared. Other Objects RKClient or RKObjectManager work…
choise
  • 24,636
  • 19
  • 75
  • 131
2
votes
1 answer

How to Get rid of title bar in Three20?

I present a modal view controller in three20 framework,but the view is not full screen , and always hava a titleBar.how to get rid of this title,let my view is full screen. How to get rid of Three20 TTTableviewController title bar? when I present a…
fgmailbox
  • 21
  • 1
2
votes
2 answers

Is there a very simple guide to install Three20 Library in new Xcode4 project?

I read its nice library. But I don't understand why it is so complicated to install it. Is there simple way to just download, and link the libraries ?
Zoro
  • 31
  • 1
2
votes
1 answer

Using only TTStyledTextLabel from Three20

I want to use Three20's TTStyledTextLabel, in order to provide support for a label where pressing a link inside it will trigger safari to open it. The problem is I'm afraid including the entire Three20 library is quite an overkill, since it has much…
Idan
  • 5,717
  • 10
  • 47
  • 84
2
votes
0 answers

Custom Three20 TTThumbsViewController or not?

I need to create something like the Three20 TTThumbsViewController, but each cell needs a caption of the image and I need to specify the number and size of cells in the grid. It also needs to send the user to another view by tapping the Captioned…
BrettStuart
  • 315
  • 4
  • 19
2
votes
1 answer

how to add json module in Three20

I tried to use command line to add Three20 with JSON : python three20/src/scripts/ttmodule.py -p JsonTest/JsonTest.xcodeproj Three20 extThree20JSON:extThree20JSON+SBJSON this command line successfully executed without any error message. I can find…
Ke CAI
  • 233
  • 6
  • 17
2
votes
1 answer

How to use Three20 TTMessageController?

I am new to iOS development. For my little messenger I need a contact picker and a textarea. So the TTMessageController of the Three20 project seems to be very interesting. However I am not really sure how to implement it. For now I have three…
DarkLeafyGreen
  • 69,338
  • 131
  • 383
  • 601
2
votes
1 answer

How to change the size of the grid of TTThumbsViewController

I'm using the Three20 Photo Gallery and wondered if it's possible to have two different grid sizes in two different galleries. So in Gallery one I use the standard size (up to 4x4 thumbs) and in the other I only want a 2x2 gallery size. Is that…
2
votes
3 answers

Three20 simple navigation

I am starting to work with the Three20 library and created a UIButton using the following code: self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithTitle:@"Add New" …
Bill Shiff
  • 1,429
  • 2
  • 14
  • 17