我已经包含了Three20库,并使用TTNavigator作为我的视图。
我的目标是从视图4跳转到视图2。
我找到的唯一解决方案,是调用popViewControllerAnimated在视图4获得视图3,然后在ViewDidAppear在视图3再次调用popViewControllerAnimated,以获得视图2。
问题是,当然,我只想调用popViewControllerAnimated在view3 ViewDidAppear只有,当ViewDidAppear被调用从视图4到视图3,而不是在其他情况下(例如,视图2打开视图3)。
因此,据我所见,我必须设置BOOL属性或类似的东西,但如何?我不能在这里使用委托,因为由Three20给出的URL-Navigation。
使用UINavigationController
的-popToViewController:animated:
方法:
// This is a method of your UIViewController subclass with view 4
- (void) popTwoViewControllersAnimated:(BOOL)animated {
NSInteger indexOfCurrentViewController = [self.navigationController.viewControllers indexOfObject:self];
if (indexOfCurrentViewController >= 2)
[self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:indexOfCurrentViewController - 2] animated:animated];
}
如何使用单例设计模式
你可以在那里设置一个bool值,你可以根据你要来的视图来改变,然后在视图3中检查这个值是什么。在我看来,这是不使用委托的最简单的方法
. h文件@interface Singleton : NSObject
{
BOOL flag;
}
@property(nonatomic) BOOL flag;
@end
.m file
static Singleton *instance = nil;
@implementation Singleton
@synthesize flag;
+(id) sharedManager
{
@synchronized(self){
if(instance == nil)
instance = [[super allocWithZone:NULL] init];
}
return instance;
}
+(id)allocWithZone:(NSZone *)zone
{
return [[self sharedManager] retain];
}
-(id) copyWithZone:(NSZone *)zone
{
return self;
}
-(id) retain
{
retrun self;
}
-(unsigned) retainCount
{
retrun 1;
}
-(id) init
{
if(self == [super init])
{
flag = NO;
}
}
如果代码中有一些小错误请原谅,我很快就想出了