NSUserDefaults not saving

前端 未结 4 1628
迷失自我
迷失自我 2021-01-12 23:14

I am having a problem in my sprite kit app where my NSUserDefaults variable is not working. In createSceneContents (which I know is being called)

4条回答
  •  感动是毒
    2021-01-13 00:11

    I found another reason why NSUserDefaults not saving,following code can make value in NSUserDefaults not saving:

    NSUserDefaults *def= [[NSUserDefaults standardUserDefaults] init];
    ...
    NSUserDefaults *def= [[NSUserDefaults standardUserDefaults] initWithSuiteName:@"123"];
    

    You can search NSUserDefaults in your project to catch those init twice bug.

提交回复
热议问题