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

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -