Questions tagged [ttnavigator]
34 questions
7
votes
3 answers
How can I abort deletion of record based on decisions after dbnavigator delete button pressed?
Can I abort deletion of record based on decisions after dbnavigator delete button pressed?
I checked beforeAction Event
if Button = nbDelete then
//check if not OK then
Button := nbCancel;
but it doesn't work. Any Help?
I'm using DelPhi XE2,…

ae1080
- 374
- 2
- 7
- 14
4
votes
1 answer
Three20 TTNavigator TTViewController automatic load XIB
I thought I want to share my knowledge with you around Three20 framework.
It is annoying if you use TTNavigator and you have custom VC that is subclass from TTViewController. It does not load the NIB automatically.
TTNavigator* navigator =…

kororo
- 1,972
- 15
- 26
3
votes
2 answers
Using CATransition's In Three20?
I am looking to implement CATransitions within TTNavigator, I know the method
openURL can take a UIViewAnimationTransition but that only gives me
flipping and curling animations, but with CATransition I have access
to another 8, of which…

Bongeh
- 2,300
- 2
- 18
- 30
3
votes
2 answers
three20 TTNavigator demo code triggers a compiler warning
I am working through creating a similar project following the TTNavigator demo app and have fallen at the first hurdle.
I have duplicated the beginning section as show here:
- (void)applicationDidFinishLaunching:(UIApplication *)application {
…

user7865437
- 812
- 14
- 28
2
votes
2 answers
How to push next view with TTNavigator?
I'm using a modified View-Based Application, where I have starting UIViewController showing a input control & a TTThumbsViewController showing the results. I'm passing them in the AppDelegate using TTNavigator initWithName: for the…

Kex
- 776
- 10
- 22
2
votes
3 answers
TTNavigator popViewController?
Is there a TTNavigator equivalent to UINavigationController's popViewController? (or an alternative method to dismiss a view controller that I can't find?)

thebossman
- 4,598
- 11
- 34
- 45
2
votes
1 answer
TTNavigator from Three20 is crashing
I'm using a TTTableSubtitleItem and want that on a touch a function is called.
TTURLMap *map = navigator.URLMap;
[map from:@"*" toObject:self selector:@selector(calledFunction)];
but if I' using it its throwing this error:
*** Terminating app due…

plusgut
- 25
- 2
2
votes
1 answer
TTNavigator three20 openURLAction
I'm new to three20 and trying to find my way through the TTNavigator class.
I try to push to a new view via the URL system.
So I used openURL: animated: method which works just fine, but it's deprecated, and I know that I should use openURLAction…

scud
- 1,147
- 1
- 14
- 25
2
votes
1 answer
TTNavigator not opening URLs when clicking on links in TTStyledTextLabels
Trying to make a simple link clicking activity work. I think I understand TTNavigator and TTStyledLabel, but can't get it to work.
Code:
@interface SomeVc : UIViewController {
IBOutlet TTStyledTextLabel…

Jaanus
- 17,688
- 15
- 65
- 110
1
vote
2 answers
Three20's TTNavigator and the delegate pattern
I'm working on a project with some folks who want to use TTNavigator rather than Storyboards or old-fashioned UINavigationController pushing. Fine by me, except some view controllers in our app are using the delegate pattern to communicate with each…

CharlieMezak
- 5,999
- 1
- 38
- 54
1
vote
1 answer
three20 weird navigation problem
In Three20, I've a custom cell which includes a UIButton. I'm firing "tap" method when UIButton is tapped like this:
UIButton* cevapla=[UIButton buttonWithType:UIButtonTypeCustom];
[cevapla addTarget:self
action:@selector(tap:)
…

Cagatay Gurturk
- 7,186
- 3
- 34
- 44
1
vote
2 answers
How pass a parameter to a from:toObject:selector:?
I have a TableView with several rows. When a row is selected, I need to perform a selector. I do something like this:
[TTTableTextItem
itemWithText:NSLocalizedString(@"Cash","Title:Cash")
URL:[NSString @"tt://payment/add/%d",5]
…

mamcx
- 15,916
- 26
- 101
- 189
1
vote
0 answers
UINavigationController with TTNavigator
I am using a UINavigationController in the appdelegate as a basis for all views and I am using the TTNavgitor for antother flow starting with a TTTableViewController.
When I use the TTNavigator for some reason I have 2 problems:
After I choose one…

user748668
- 11
- 4
1
vote
0 answers
How to load a SplitViewController in a universal app
This is probably a straight forward problem, but I for some reason cannot get it to work.
I have an universal app, with icons on the start screen (TTLauncher) and use TTNavigator to push in view controllers.
On one of the icons a normal tableView is…

Luuk D. Jansen
- 4,402
- 8
- 47
- 90
1
vote
1 answer
TTStyleSheet not working when restored by TTNavigator
I'm using version 1.1 of the Three20 library and I'm setting a global style sheet to change the navigationBarTintColor in my app delegate like this:
[TTStyleSheet setGlobalStyleSheet:
[[[DefaultStyleSheet alloc] init] autorelease]];
That is…

cg.
- 3,648
- 2
- 26
- 30