ios - Should your plist ever contain <string></string>? -
i see 3 occurrences of <string></string>
in plist file. issue? started looking plist because i'm getting error:
icon specified in info.plist not found under top level app wrapper
so i'm curious point of <string></string>
, can remove occurrences?
a plist json can either dictionary or array.
it has values in key value format.
if have employee employeeid, name. in json
{ "employeeid": 1011, "name": "employee name" }
same in plist
<dict> <key>employeeid</key> <integer>1011</integer> <key>name</key> <string>employee name</string> </dict>
you can see there <string>employee name</string>
. means value of of key name employee name , it's type string. in case empty string
Comments
Post a Comment