このコードは正常に実行され、「利用規約ページ」が開きます。しかし、ページの上部に余分な 1 つのナビゲーション バーが表示されるという問題が 1 つあります。ページ上部のナビゲーション バーを非表示または削除する方法
ClsMainPageAppDelegate.m
#import "ClsMainPageAppDelegate.h"
#import "ClsTermsandConditionViewController.h"
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
ClsTermsandConditionViewController *ivc = [storyboard instantiateViewControllerWithIdentifier:@"termsandConditionControl"];
UINavigationController *navigationController=[[UINavigationController alloc] initWithRootViewController:ivc];
self.window.rootViewController=nil;
self.window.rootViewController = navigationController;
[self.window makeKeyAndVisible];
}