我有delegate.m文件如何在iphone應用程序中調用方法?
-(void) switchToTabbarController
{
TabBarController *tabBarController =
[[TabBarController alloc] initWithNibName:@"TabBarController" bundle:nil];
[self.window addSubview:tabBarController.view];
}
的方法,我想從我的LoginView方法調用此方法。怎麼做?
感謝da ans Mats :)但我有一個問題[(ApplicationDelegate *)[UIApplication sharedApplication] .delegate switchToTabbarController]是什麼意思? .............是否需要在我的login.M文件中添加以下代碼行 – 2011-12-15 12:25:57
我誤解了。我假設如下:代表是您的應用程序委託。這是真的? – 2011-12-15 12:28:45