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 need a gallery in my application and I found this tutorial on how to implement the Three20 into my application: http://www.raywenderlich.com/1430/how-to-use-the-three20-photo-viewer.
I've a storyboard where the root is a Tab Bar Controller. This…
I have a TTLauncherView in my ios app. I have allowed users to edit and move their items around, however it does not appear that you can move the item from one screen to another, does anyone know how to do this?
i want to make compatible my apps with iOS 5. Everything goes well with iOS 4.3. After changing the main project and target compiler settings to Apple LLVM compiler 3.0, and set the Three20 project and target settings to LLVM GCC 4.2 i ran the…
I want to check the app version from apple so I send request like below
- (void)connectToCheckVersion{
NSString *url = @"http://itunes.apple.com/lookup?id=466424846";
TTURLRequest *_request = [TTURLRequest requestWithURL:url…
I have a project that I started a while ago with xcode 3 that displays search results as TTImageViews in a UIScrollView. I updated to xcode 4.2 recently and managed to successfully build and archive the project for submitting to the app store. The…
I write an iPhone application using Three20 library to display thumbnail images. At first I build the app using XCode 4.0.2 with iOS SDK 4.3 and I used deployment target 4.2. It did fine, the images appeared normally.
thumbnail image in iOS 4.3…
Is there a way to design a UITableCell in Interface Builder and use that in three20, with the TTTableViewController?
I can only find examples that programmatically create TTTableCell types.
Thanks
I originally got this error when attempting to validate my app store .ipa.
iPhone/iPod Touch: application executable is missing a required architecture. At least one of the following architecture(s) must be present: armv6
I changed my build settings…
Is three20 still actively being developed? From the three20.info site, I see no new features/UI elements since earlier this year when I looked into it.
Besides three20, is there another good framework out there?
Hi can't find any simple tutorial/doc on how to populate a TTTableViewController with remote JSON data through a data model.
I followed this tutorial to create my Table View with local datas:…
I'm trying to use this to add button to toolbar:
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self.navigationController setToolbarHidden:NO animated:NO];
self.navigationController.toolbar.translucent = YES;
…
I have a TTTableViewController and want to show a tableBannerView (as shown in the sample code). The view to show is again a TTTableViewController:
- (void)toggleInfo {
if(self.tableBannerView) {
[self setTableBannerView:nil animated:YES];
}…
I'm currently using the Three20 TTLauncher as a base for my app.
However when tapping on a TTLaunchItem, it jumps to the mapped URL.
Is there any way that I can use the same "expanding" animation/Transition that the facebook app uses?
I have deleted my nib file from my UIViewController and now I want to make it so that it calls init instead of initWithNibName. However, even after I deleted my UIViewController, it is still calling the initWithNibName. What do I need to do to…