0

これが起こるまで、すべてが順調に進み、私のアプリはほぼ完成していました。iOSシミュレーターで実行しようとする以外は、変更を加えていません。もう一度iPhoneでやろうとしたら、起動画面の後に画面が真っ暗に!そして、xcodeでエラーは発生しません。

私は自分のプロジェクトをきれいにし、iOS シミュレーターをリセットし (キックのためだけに)、Macbook を再起動し、iPhone を再起動し、ホームスクリーンからアプリを削除して、もう一度インストールしようとしました。

iPhone 5 で iOS 6 用にビルドします。

AppDelegate.h

//
//  AppDelegate.h
//  
//
//  Created by Øyvind Larsen Runestad on 13.01.13.
//  Copyright (c) 2013 Øyvind Larsen Runestad. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate> {

IBOutlet UITabBarController *tabBarController;
}
@property (strong, nonatomic) UIWindow *window;

@property(nonatomic, readonly) UITabBarController *moreNavigationController;

@end

AppDelegate.m

//
//  AppDelegate.m
//  
//
//  Created by Øyvind Larsen Runestad on 13.01.13.
//  Copyright (c) 2013 Øyvind Larsen Runestad. All rights reserved.
//

#import "AppDelegate.h"

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.
    return YES;
}

- (void)applicationWillResignActive:(UIApplication *)application
{
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

- (void)applicationWillEnterForeground:(UIApplication *)application
{
    // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}

- (void)applicationDidBecomeActive:(UIApplication *)application
{
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

- (void)applicationWillTerminate:(UIApplication *)application
{
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}

@end

この問題の解決策はありますか?

敬具、オイヴィンド・ラーセン・ルーンスタッド。

編集:解決しました!

さて、私はそれを整理しました。プロジェクトのメイン ストーリーボードが空白に設定されました。これを MainStoryboard に変更するだけで済みました。

結局、私の AppDelegate は問題ないようです @H2CO3 ;)

4

1 に答える 1

0

これが実際のコードである場合、問題は次のとおりです。アプリの起動時にキー ウィンドウを作成していません。

于 2013-01-18T18:37:09.730 に答える