将 LSSupportsOpeningDocumentsInPlace 布尔键添加到 Info.plist XML
Add LSSupportsOpeningDocumentsInPlace boolean key to Info.plist XML
我需要将 LSSupportsOpeningDocumentsInPlace
添加到 Info.plist 以使我的 Xamarin.IOS 应用的下载文件显示在“文件”应用中。
在Visual Studio Info.plist编辑器里面好像没有添加key的地方,所以我直接编辑文件,格式不清楚.如果我创建类型为 <boolean>
的密钥,那么在 VS 中再次打开文件时会出现错误。
这是我的尝试,不会导致错误,但在运行iPhoneSimulator中的应用程序时似乎没有任何影响:
<key>LSSupportsOpeningDocumentsInPlace</key>
<string>YES</string>
添加布尔键的正确方法是什么?
在info.plist中有两种添加键值的方法。
1.Open 和 ,在根 dict
元素的末尾添加键值。
<key>LSSupportsOpeningDocumentsInPlace</key>
<true/>
2.Open 以 , click the button 结尾,并添加一个布尔键。
我需要将 LSSupportsOpeningDocumentsInPlace
添加到 Info.plist 以使我的 Xamarin.IOS 应用的下载文件显示在“文件”应用中。
在Visual Studio Info.plist编辑器里面好像没有添加key的地方,所以我直接编辑文件,格式不清楚.如果我创建类型为 <boolean>
的密钥,那么在 VS 中再次打开文件时会出现错误。
这是我的尝试,不会导致错误,但在运行iPhoneSimulator中的应用程序时似乎没有任何影响:
<key>LSSupportsOpeningDocumentsInPlace</key>
<string>YES</string>
添加布尔键的正确方法是什么?
在info.plist中有两种添加键值的方法。
1.Open 和 dict
元素的末尾添加键值。
<key>LSSupportsOpeningDocumentsInPlace</key>
<true/>
2.Open 以