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
2 answers

Three20: Photo Viewer customization

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…
dhrm
  • 14,335
  • 34
  • 117
  • 183
2
votes
1 answer

three20 related clang link error when building for archive in Xcode 4.2

I'm getting the following error when I build for archive. My app builds fine for the simulator. Ld…
livingtech
  • 3,570
  • 29
  • 42
2
votes
2 answers

TTLauncherView move item to other page

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?
Ben
  • 16,124
  • 22
  • 77
  • 122
2
votes
1 answer

iOS 5 and Three20 SDK

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…
fanatic
  • 53
  • 7
2
votes
1 answer

request send get error: [CFString release]: message sent to deallocated instance 0x6a83e00

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…
Jason Zhao
  • 1,278
  • 4
  • 19
  • 36
2
votes
0 answers

xcode 4.2 TTImageView in UIScrollView, views don't appear in Released iTunes version but do in Debug

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…
manOS
  • 21
  • 3
2
votes
1 answer

Strange white bar shows, when using TTThumbsViewController with iOS 5 SDK

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…
mamaz
  • 25
  • 7
2
votes
1 answer

Use Custom Table Cells Made in Interface Builder with three20

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
Tyler DeWitt
  • 23,366
  • 38
  • 119
  • 196
2
votes
1 answer

Issues building app store ipa w/ xcode4.2/ios5 GM with Three20 after changing settings to build for armv6 and armv7

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…
Hardip Singh
  • 126
  • 4
2
votes
2 answers

three20 actively developed

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?
tom
  • 14,273
  • 19
  • 65
  • 124
2
votes
1 answer

Populate TTTableViewController with JSON data

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:…
Quentin Hayot
  • 7,786
  • 6
  • 45
  • 62
2
votes
1 answer

How to add button to toolbar using Three20?

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; …
defmthd
  • 153
  • 9
2
votes
1 answer

Three20 - Getting empty TableView when setting a TTTableViewController as TableBannerView

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]; }…
tilo
  • 14,009
  • 6
  • 68
  • 85
2
votes
2 answers

Three20 TTLauncher Animations / Transitions

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?
Tom Kelly
  • 509
  • 2
  • 4
  • 16
2
votes
3 answers

removed nib issues and calling init

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…
adit
  • 32,574
  • 72
  • 229
  • 373