tabBar が表示される前に登録画面を作成しています。私の考えは、この方法で登録画面を表示することです(今のところ、却下機能はありません):
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
Register *registerView = [[Register alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:registerView animated:YES];
return YES;
}
これは AppDelegate.m にあります
残念ながら機能しません。これを解決するのを手伝ってくれませんか?