Hi,
I tried running my working 3.1.x application on 3.2 and realized that
the MPPlayerController framework had changed.
After doing some research the common method should be to add the
MPMoviePlayerViewController's view as a subview.
Somehow this does not work for me ...
I have TTTableViewController with items such as :
[TTTab...
I have been trying to get TTTabItem to work with images. And I dug up
that you can set the icon to an image file.
This is my implemenation:
TTTabItem *tab1 = [[[TTTabItem alloc] initWithTitle:@"Item 1"]
autorelease];
tab1.icon = @"bundle://icon_eat_min.png";
filterBar.tabItems = [NSArray arrayWithObjects:
...
I am tring to integrate Three20 to my project. I followed the same instructions given in this page
Three20. But I am getting CANNOT FIND #import "Three20/Three20.h" issue.
Header Search path under Project info > Build i have set as ../three20/Build/Products/three20
Please suggest me what can be the problem in my header search path set...
Hi All
I am using the TTMessageController class for compose mail.There is only 'To' recepients Field in this class. I added the Cc Field in it. I have used this code:
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
_fields ...
Hi All,
I am using 'TTMessageController' for composing mail.I want to use this class for replying mail. How I set the html Text in message body on 'TTMessageController' Layout ?
Thanks
Deepika
...
I have a scroll view embedded into the tableHeaderView of a UITableView. I have a few images that the user can scroll through left/right. Pinch/zoom is not enabled.
Initially, I could scroll through the images, but only if I was extremely precise with my horizontal movement. Any deviation would be intercepted by the UITableView as a ver...
Hey, everybody.I'm beginning.
I used Xcode + Interface Build to set up a Project on the bases of Tab bar. And now I want to draw support from three20 to realize Tab bar's view, that is to say, when click "item", the view from three20 will display. So I want to know how to insert "Three20 Project" to Tab bar Project?
...
I got this crash log while querying an array of managed object, however, while running in the simulator it does not happen. Even in the device, sometimes it happens, sometimes not. Someone can explain to me why and what is the error?
Incident Identifier: 0ED2BB7C-5E8F-483B-AE08-8DE2C14D0C23
CrashReporter Key: e24b9614a897f92ee13ce00b7...
I have a UIImage that I want to display with TTPhotoViewController, but TTPhotoViewController does not take a UIImage as an argument. It does take a TTPhoto as an argument, so I'm wondering if there is a way to convert a UIImage to a TTPhoto or if there is any other way to get the TTPhotoViewController to display my UIImage other than se...
Whenever I add the TTPhotoViewController to my window , it appears without a top navigation bar and once I tap the image, the bottom navigation overlay and the status bar (the springboard one) will disappear permanently. How do I create a top navigation bar so I can add a button to hide the view after it was shown and how do I restore th...
It seems that Google has disabled the old way of sending cookie SID to their Google Data Services, specifically Google Reader.
This way does not work at least for me:
//create request
NSString* content = [NSString stringWithFormat:@"accountType=HOSTED_OR_GOOGLE&Email=%@&Passwd=%@&service=ah&source=myapp", [loginView username].text, [lo...
I have downloaded the latest build of the three20 library but it doesn't include the TTNavigationController. I looked through the files on github and found the classes there though. So I downloaded them but now I can't find it's parent class TTBaseNavigationController anywhere. Does anybody know what's going on with the three20 build I g...
Hi all,
In my app I send a request to get images from flickr. I have went
through my app step-by-step with a breakpoint and found the app
crashes at this line in TTURLRequest.m:
} else {
return [self.urlPath md5Hash];
}
I get this error in the debugger:
* Terminating app due to uncaught exception
'NSInvalidArgume...
Hi there,
I'm solving a problem how to make tableviews work within three20's TTScrollView. I have a project which I want to rebuild using three20 library. There is one module which allows user to flip through set of "pages", which contains table showing some list of data.
My problem is that when I rebuilt this module to use three20's T...
I've done plenty of iPhone work, never anything with Android. On iPhone, it was a few months in before I discovered the Three20 library (which is awesome) and began moving my code over. I don't want to make the same mistakes moving to Android, so my question:
Do android developers commonly use 3rd-party UI/networking libraries like Thre...
Hello Guys,
Please, advice me how safe is to integrate three20 framework in our project. Previously i heard that some private API issue and apple rejecting the app. Did any one done the three20 framework and apple approve it with out any issue ?
Please, advice ASAP.
Thanks
...
Hey,
i just upgraded my Project to the newest Three20 Build.
When compiling i get following errors:
Undefined symbols:
"___restore_vfp_d8_d15_regs", referenced from:
+[TTEntityTables(TTSingleton) sharedInstance] in libThree20Core.a(TTEntityTables.o)
+[TTEntityTables(TTSingleton) releaseSharedInstance] in libThree20Core.a(TTEntity...
I installed the latest iOS4 SDK which replaced my existing SDKs (so I no longer have anything other than 3.2, 4.0).
I also checked out the latest Three20 from github, and now whenever I'm about to Build a new Three20 app, or even run the samples I get the following error:
Build Three20Core of project Three20Core with configuration Debu...
I'm following this tutorial and declare the following mappings in my app delegate:
[map from:@"x://profile/(initWithId:)/(name:)" toViewController:[ProfileViewController class]];
[map from:@"*" toViewController:[TTWebController class]];
In ProfileViewController.m I implement the - (id)initWithId:(int)anIdentifier name:(NSString *)name...
Hello,
I would like to have different routing rule for my application:
* standard URL (http/https)
* custom URL : myApp://user
* custom URL 2 : myApp://message
In each case, I need to call a different controller.
For the moment, I added a TTURL Map in the Delegate of my application:
[map from:@"http://*" toViewController:[BrowserContr...