Tag: Xcode4.4

模拟器在Xcode 4.4中不断崩溃

当我在Xcode 4.4中运行我的应用程序时,模拟器无法打开,“iOS模拟器意外退出”。 它尽pipe在设备上运行完美。

我们在xcode 4.4.1中综合了哪些属性

我正在使用Xcode 4.4.1。 当我在.h文件中定义@property像UINavigationController或NSArray ,我必须在.m文件中将它合成为。 但是像UITabBarController或NSString我不必@synthesize它使其工作。 我的问题是@property需要什么@synthesize和什么不需要。 AppDelegate.h @interface AppDelegate : UIResponder <UIApplicationDelegate> { UITabBarController *_tabBar; UINavigationController *_navBar; } @property (strong, nonatomic) UIWindow *window; @property (nonatomic, retain) Employee *empView; @property (nonatomic, retain) UITabBarController *_tabBar; @property (nonatomic, retain) UINavigationController *_navBar; AppDelegate.m @implementation AppDelegate @synthesize _navBar; – (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] […]

XCode 4.4 iOS 5.1模拟器问题

我更新了我的mac书到山狮和Xcode到4.4版本。 在pre版本中,我没有closuresiOS模拟器的问题,Xcode自动停止了构build过程,但是现在如果closures了iOS模拟器,Xcode中的构build过程仍在运行,我必须强制退出Xcode,因为它冻结。 有没有人认识到这个错误,或者你能帮我解决这个问题吗?

在#import“myFile.h”中丢失完成

由于我有Xcode 4.4,当我想要在我的类上导入文件时,我已经完成了。 我必须完整地写入文件(问题只出现在导入范围内,它在别处工作) 有没有人有同样的问题,知道如何弄清楚?