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
55
votes
6 answers

Couldn't load a xcode project because it is already opened from another project or workspace

I have a project that has one target dependency. The target dependency is dependent on a framework called Three20. The dependency tree looks like this. myProject -> myCustomFramework -> Three20 When I tried to build and run I get the…
David
  • 14,205
  • 20
  • 97
  • 144
28
votes
2 answers

Monotouch Three20 app launcher or bindings

From what I've read about btouch; the bindings are not complete for three20. Is there a project that provides either bindings for the Three20 app launcher or a pure MonoTouch implementation of a launcher UI element?…
detroitpro
  • 3,853
  • 4
  • 35
  • 64
19
votes
0 answers

UINavigationController custom animation

Possible Duplicate: Custom animation for pushing a UIViewController Any of you achieved to make custom animation like expand from middle in UINavigationController? (for example Facebook app when you select news feed from the launcher view) I seen…
kororo
  • 1,972
  • 15
  • 26
16
votes
2 answers

Recreate recipient bubble behaviour in Mail.app / Three20

Krumelur asked this question about how create a recipient bubble similar to the mail.app. Please see screenshots below of what I mean: I can create the look of this element (including the look when it has been selected) but I am struggling with…
Luke
  • 3,665
  • 1
  • 19
  • 39
14
votes
12 answers

Xcode 4 & three20 & create IPA archive: No such file or directory

In Xcode 3.2.5 I use "Build And Archive" to create an IPA file without any problems. How can I do that in Xcode 4? I think I have to use "Product -> Archive", but I get over 100 error messages in the three20 framework. Most are "No such file or…
Manni
  • 11,108
  • 15
  • 49
  • 67
13
votes
1 answer

TTPickerTextField example

I've been trying all day and just can't make the the TTPickerTextField work. It displays, I set its dataSource to the example code's MockDataSource and type in a name from the mock and it doesn't work. There doesn't seem to be any documentation or…
Tim Sullivan
  • 16,808
  • 11
  • 74
  • 120
10
votes
2 answers

Are there libraries similar to the Three20 Project for Android?

The Three20 project is really nice for building iPhone apps quickly using common libraries: https://github.com/facebook/three20 Is there anything like this for Android?
Sheehan Alam
  • 60,111
  • 124
  • 355
  • 556
9
votes
2 answers

Three20 Photo Scroller alternative?

I wan to add a view in my iPhone app where the user can scroll (paged) through a series of web loaded images. I've been reading many threads and most of them end up suggesting the Three20 lib. I've tried that and looks complicated to integrate and…
gonso
  • 2,065
  • 5
  • 27
  • 35
9
votes
4 answers

understanding TTNavigator

following situation: in a TTTableViewController i added some Cells with URLs. they are opening a class with @"tt://photos" for example. this works quite fine. the first thing is, i saw some urls in TT Examples like @"tt/photos/1". is it possible to…
choise
  • 24,636
  • 19
  • 75
  • 131
9
votes
1 answer

three20 and iOS 6 not working

I was just trying out a project of mine which had Three20 in it and it seems that it doesn't compile/gives me build error. Seems like it's because some of the UITouch interface has changed. Wonder if there's a quick fix to do this? Seems like here…
adit
  • 32,574
  • 72
  • 229
  • 373
8
votes
2 answers

toSharedViewController not re-using existing controller

My URL map is as follows: [map from:@"tt://webPage/(initWithPage:)" toSharedViewController:[WebPageController class]]; and in the WebPageController - (id) initWithPage:(WebPage)page { if (self = [super init]) { ... Then I called the…
Howard
  • 19,215
  • 35
  • 112
  • 184
8
votes
1 answer

How to Start Three20 Photo Viewer in Thumbnail view?

I followed How To Use the Three20 Photo Viewer by Ray Wenderlich tutorial it was very clear and working perfectly, my question as the title, How to Start Three20 Photo Viewer in Thumbnail view? I am greatly appreciative of any guidance or help.
Ahmad Kayyali
  • 8,233
  • 13
  • 49
  • 83
8
votes
2 answers

UIView: How to check if touches ended inside the same view in which they began

In AcaniUsers, I've created a grid of ThumbView : UIView instances inside of a UITableView. All thumbViews have a width of kThumbSize. How do I detect if touches ended inside the same view in which they began?
ma11hew28
  • 121,420
  • 116
  • 450
  • 651
7
votes
2 answers

Rotating Three20 TTPhotoViewController inside TabBarController

Adding Three20 TTPhotoViewController on an empty UIWindow Rotation were working like a charm. But when I moved the TTPhotoViewController to be created from UINavigationController inside a UITabBarController it does not rotate at all. I made sure I…
Ahmad Kayyali
  • 8,233
  • 13
  • 49
  • 83
7
votes
4 answers

why can't Xcode find this header file?

Hi I'm getting an xcode "no such file or directory" for: #import "Three20Core.h" I also note when I'm typing in the #import statement it recognises, and helps autocomplete, the "Three20Core.h" file, however when I compile I get the error? This is…
Greg
  • 34,042
  • 79
  • 253
  • 454
1
2 3
58 59