LoginSignup
2
2

More than 5 years have passed since last update.

Xcode の "Arguments Passed On Lanuch" で dictionary を与える方法

Posted at

json 形式の -Foo {bar: "abc"} とかだとエラーになる

CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon or value in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolonOrValue to debug.

Arguments Passed On Lanuch

-Foo {bar = "abc";}
lldb
(lldb) po [NSUserDefaults standardUserDefaults] objectForKey:@"Foo"]
{
    foo = abc;
}

po してみるとほぼその形式でプリントされてますね。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2