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.
Is it possible to change the Three20 language/localization at runtime without restarting the app?
Currently, I managed to change the language via altering the value of AppleLanguages in the main.m
the TTTwitter seems to be wrong,when i click the more Button,the following method runs twice,and first time more is true,second time more is false,so we can see that the table can't load data right.
- (void)load:(TTURLRequestCachePolicy)cachePolicy…
On my server, I have three files per image.
A thumbnail file, which is cropped to 128 by 128.
A small file, which I aspect fit to a max of 160 by 240.
A large file, which I aspect fit to a max of 960 by 540.
My method for returning these URLs to…
I have an iOS project that requires compatibility with iOS 3.X devices. Thus, I must target both armv6 and armv7 architectures.
I have added an xcconfig file to my project and to my dependent projects (I use three20 and it comes with a common…
I'm using a TTTableViewController with a TTURLRequestModel and implemented the "Drag to refresh" feature with these lines in my ViewController:
- (id)createDelegate {
return [[[TTTableViewDragRefreshDelegate alloc]…
I'm building an app with Three20 and I'm using the photo gallery component.
I can't find any documentation about the different cache policy available.
Could you explain to me each of them…
I'm getting these errors when trying to load big files using TTRequestLoader:
2011-06-30 07:25:21.782 xxxxxxx[1261:607] -[TTRequestLoader connection:didReceiveResponse:](317):
TTDASSERT failed: 0 == _queue.maxContentLength || contentLength…
I know that if map a url with from:toViewController:, then open that url will create a new view controller and if from:toSharedViewController is used then a shared instance will be used.
But for example
[map from:@"tt://tabbar/(initWithString:)"…
I have started to study Three20 and I have a simple question about TT_RELEASE_SAFELY
Up till now I like to write code in this way:
UILabel *lab = [[UILabel alloc] initWithFrame:rect];
[self.view addSubview:lab];
[lab release];
Here I think the main…
This is driving me nuts. I am using three20's TTTableViewController and when I get a memory warning, the screen goes white. Now, after reading on the three20 google group is seems that the tableView got released. But, I cannot for the life of me…
I'm taking my first stab at the three20 iPhone framework and I can't seem to figure out how to change the background of a table cell to a UIImage instead of just the color. Can anyone help me out?
I am using a TTListDataSource to populate a TTTableViewController.
This is the code I am using to populate the TTListDatSource items array:
NSString *text = [NSString stringWithFormat:@"%@ %@", someObject.title,…
In my project, I use the Facebook API "three20": https://github.com/facebook/three20/
Now, I need to customize the TTPhotoViewController.
In the gallery, there's an "auto zoom". The complete width and height are always used:
The disadvantage is…