Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ios/109.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ios TTNavigator URL值与当前VC不匹配_Ios_Three20_Ttnavigator - Fatal编程技术网

Ios TTNavigator URL值与当前VC不匹配

Ios TTNavigator URL值与当前VC不匹配,ios,three20,ttnavigator,Ios,Three20,Ttnavigator,大家好,我想问一下,你们当中是否有人遇到过像我这样的问题。我一直在使用Three20框架的TTNavigator进行一个项目。每个视图都按其应有的方式显示和转换。我有一个应用程序菜单,其中有应用程序各个模块的按钮。问题在于,当我单击某个特定模块的按钮并显示该视图时,TTNavigator的URL属性值是应用程序的菜单视图tt://main菜单的URL属性值,而不是模块的初始视图,例如tt://messageBoard或tt://profilePage。我已经检查并审查了这个问题可能与之相关的必要

大家好,我想问一下,你们当中是否有人遇到过像我这样的问题。我一直在使用Three20框架的TTNavigator进行一个项目。每个视图都按其应有的方式显示和转换。我有一个应用程序菜单,其中有应用程序各个模块的按钮。问题在于,当我单击某个特定模块的按钮并显示该视图时,TTNavigator的URL属性值是应用程序的菜单视图tt://main菜单的URL属性值,而不是模块的初始视图,例如tt://messageBoard或tt://profilePage。我已经检查并审查了这个问题可能与之相关的必要代码块,但我似乎无法排除手头的故障

下面是我的AppDelegate的定义

#import "Three20TestAppDelegate.h"
#import "StartViewController.h"
#import "JumpsiteProfilePage.h"
#import "MenuViewController.h"
#import "BNDefaultStylesheet.h"
#import "MessageBoardViewController.h"
#import "GroupListViewController.h"
#import "DrillDownGroupListView.h"
#import "ProfileListViewController.h"
#import "ProfileDetailsViewController.h"

#define UIColorFromRGB(rgbValue) [UIColor \
colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
green:((float)((rgbValue & 0xFF00) >> 8))/255.0 \
blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]

@implementation UINavigationBar (UINavigationBarCategory)
-(void)drawRect:(CGRect)rect{

UIImage *image = [UIImage imageNamed:@"NavBar BG.png"];
[image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];

self.tintColor = UIColorFromRGB(0xFFD900);

}
@end

@implementation UIToolbar (UIToolbarCategory)
-(void)drawRect:(CGRect)rect{

UIImage *image = [UIImage imageNamed:@"NavBar BG.png"];
[image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];

self.tintColor = UIColorFromRGB(0xFFD900);
[super drawRect:rect];
}



@end


@implementation Three20TestAppDelegate


@synthesize window=_window;

@synthesize managedObjectContext=__managedObjectContext;

@synthesize managedObjectModel=__managedObjectModel;

@synthesize persistentStoreCoordinator=__persistentStoreCoordinator;

- (void)applicationDidFinishLaunching:(UIApplication *)application {    

TTNavigator *navigator = [TTNavigator navigator];
navigator.window = _window;
navigator.persistenceMode = TTNavigatorPersistenceModeAll;
navigator.supportsShakeToReload = YES;

[TTStyleSheet setGlobalStyleSheet:[[[BNDefaultStylesheet alloc] init] autorelease]]; 

TTURLMap *map = navigator.URLMap;

//startView(Log-in View)
[map from:@"tt://startView"
 toSharedViewController:[StartViewController class]];

//Application's Menu
[map from:@"tt://mainMenu" 
toSharedViewController:[MenuViewController class]];

//User's Profile module
[map from:@"tt://profilePage" 
toSharedViewController:[JumpsiteProfilePage class]];

//Message Board module
[map from:@"tt://messageBoard" 
toSharedViewController:[MessageBoardViewController class]];
[map from:@"tt://groupList" 
toSharedViewController:[GroupListViewController class]];
[map from:@"tt://drillDownListView" 
toSharedViewController:[DrillDownGroupListView class]];

//Profile List module
[map from:@"tt://profileList" 
toViewController:[ProfileListViewController class]];
[map from:@"tt://profileDetailsList" 
toSharedViewController:[ProfileDetailsViewController class]];  

[navigator openURLAction:[TTURLAction actionWithURLPath:@"tt://startView"]];

// Override point for customization after application launch
[_window makeKeyAndVisible];
}

- (void)applicationWillResignActive:(UIApplication *)application
{
}

- (void)applicationDidEnterBackground:(UIApplication *)application
{
}

- (void)applicationWillEnterForeground:(UIApplication *)application
{
}

- (void)applicationDidBecomeActive:(UIApplication *)application
{
}

- (void)applicationWillTerminate:(UIApplication *)application
{
[self saveContext];
}

- (void)dealloc
{
[_window release];
[__managedObjectContext release];
[__managedObjectModel release];
[__persistentStoreCoordinator release];
[super dealloc];
}

- (void)awakeFromNib
{
}

- (void)saveContext
{
NSError *error = nil;
NSManagedObjectContext *managedObjectContext = self.managedObjectContext;
if (managedObjectContext != nil)
{
    if ([managedObjectContext hasChanges] && ![managedObjectContext save:&error])
    {
        NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
        abort();
    } 
}
}

#pragma mark - Core Data stack

- (NSManagedObjectContext *)managedObjectContext
{
if (__managedObjectContext != nil)
{
    return __managedObjectContext;
}

NSPersistentStoreCoordinator *coordinator = [self persistentStoreCoordinator];
if (coordinator != nil)
{
    __managedObjectContext = [[NSManagedObjectContext alloc] init];
    [__managedObjectContext setPersistentStoreCoordinator:coordinator];
}
return __managedObjectContext;
}

- (NSManagedObjectModel *)managedObjectModel
{
if (__managedObjectModel != nil)
{
    return __managedObjectModel;
}
NSURL *modelURL = [[NSBundle mainBundle] URLForResource:@"Three20Test" withExtension:@"momd"];
__managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL];    
return __managedObjectModel;
}

- (NSPersistentStoreCoordinator *)persistentStoreCoordinator
{
if (__persistentStoreCoordinator != nil)
{
    return __persistentStoreCoordinator;
}

NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"Three20Test.sqlite"];

NSError *error = nil;
__persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]];
if (![__persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeURL options:nil error:&error])
{
    NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
    abort();
}    

return __persistentStoreCoordinator;
}

#pragma mark - Application's Documents directory

- (NSURL *)applicationDocumentsDirectory
{
    return [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory                 inDomains:NSUserDomainMask] lastObject];
}

@end
映射视图控制器 调用ViewController
听起来很奇怪。你能给我们看一下你的UIApplicationDelegate的代码吗?@aporat-我已经编辑了我的帖子,并为appdelegate实现添加了源代码
[map from:kAppRootURLPath toViewController:[HomeThumbnailViewController class]];
TTURLAction *urlAction=[[[TTURLAction alloc] initWithURLPath:strTTURL] autorelease];
urlAction.animated=YES;
[[TTNavigator navigator]openURLAction:urlAction];