我的应用程序在启动时崩溃。请给我指路。非常感激。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions: (NSDictionary *)launchOptions
{
NSDictionary *temp = @{@(0): NSStringFromCGPoint(CGPointZero),
@(1): NSStringFromCGPoint(CGPointZero),
@(2): NSStringFromCGPoint(CGPointZero),
@(3): NSStringFromCGPoint(CGPointZero),
};
// Pro
NSDictionary *defaults = @{ // ... other PrefKeys
// No crash if I comment out this line
GMListVCOffsetsPrefKey:temp,
};
[[NSUserDefaults standardUserDefaults] registerDefaults: defaults];
}