だから私は自分のアプリにこのナビゲーションフレームワークをインストールしようとしています:
https://github.com/weissi/FRLayeredNavigationController
http://www.youtube.com/watch?v=k9bFAYtoenw&feature=plcp
さて、添付の画像を見ると、私のログイン画面があります。ログインが完了したら、「ホーム」ページにセグエ モーダル プッシュを実行します。そこで、ホームページに到達したら FRLayeredNavigationController を開始したいと考えています。ストーリーボードの使用中にそれは可能ですか?Youtube Video によると、通常は次のようにして FRLayeredNavigationController を使用します。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
HomeViewController* homeController = [[HomeViewController alloc] init];
FRLayeredNavigationController* lnc = [[FRLayeredNavigationController alloc] initWithRootViewController:homeController];
self.window.rootViewController = lnc;
}
[self.layeredNavigationController pushViewController:vc inFrontof:self maximumWidth:NO animated:YES];