iOSシミュレーターで基本的なiPhoneアプリケーションを実行するのに問題があります(スタンフォード大学のiTunes CS193pの講義を行っている間)。
私はしばらくの間(GoogleとSOの両方で)探していましたが、今のところ解決策を見つけることができません。多くの同様のバグがありますが、解決策はこれを修正していないようです。
Xcodeで「実行」をクリックします。コンパイルとビルドが正常に行われ、iOSシミュレーターが起動しますが、アプリをロードすることはできません。上部のステータスバーのみ。黒い画面で。
私は非常に基本的なコード(講義に続いて)を書いただけで、この問題を乗り越えることはできません。
さらに混乱させるために、私は(UIWebView)
これらの講義の前にWebラッパーを作成しましたが、これは問題なく機能します。しかし、コードにはほとんど違いがありません。私が最初から作成したすべての新しいアプリはすべて、同じ黒い画面の問題で失敗します。
シミュレーターのホームボタンを押してアプリを起動すると、表示されます。しかし、Xcodeは何が起こっているのかを知らないようです。
これは、XcodeがiOSシミュレーターと通信する機能を失い、実行されていると想定しているようです(iOSシミュレーターを終了した場合でも)。Xcodeを終了しようとすると、タスクを停止するように求められます。それからそれはただぶら下がる。したがって、Xcodeを終了するには、強制的に再起動する必要があります。
私が使用しているもの:OSX 10.8.2 Xcode 4.5.2 iOS Simulator 6.0
CalculatorAppDelegate.h
#import <UIKit/UIKit.h>
@interface CalculatorAppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
CalculatorAppDelegate.m
#import "CalculatorAppDelegate.h"
@implementation CalculatorAppDelegate
- (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 active 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
CalculatorViewController.h
#import <UIKit/UIKit.h>
@interface CalculatorViewController : UIViewController
@property (weak, nonatomic) IBOutlet UILabel *display;
@end
CalculatorViewController.m
#import "CalculatorViewController.h"
@implementation CalculatorViewController
@synthesize display = _display;
- (IBAction)digitPressed:(UIButton *)sender
{
NSString *digit = [sender currentTitle];
NSLog(@"digit pressed = %@", digit);
}
@end