root.plist文件中的隐藏字段

时间:2013-03-17 08:34:16

标签: iphone xamarin.ios settings.bundle

我使用root.plist文件根据本文设置我的monotouch iPhone应用程序:

http://adtmag.com/articles/2010/04/13/working-with-application-settings-in-monotouch.aspx

我们如何才能拥有默认情况下不可见的字段,并且应用程序可以根据条件更改可见性?

1 个答案:

答案 0 :(得分:1)

默认情况下隐藏设置。

如果你这样做:

var defaults = NSUserDefaults.StandardDefaults;
defaults.SetInt(21, "TestInt");
defaults.Synchronize();

Assert.That(defaults.IntForKey("TestInt"), Is.EqualTo(21));

如果您没有在plist文件中设置任何内容,它将完全隐藏。 (注意:我在这里使用NUnit)

因此,如果您想隐藏某些内容,请不要将该值添加到您的Settings.bundle或Root.plist。