根据这篇文章,我使用 root.plist 文件来设置我的 monotouch iPhone 应用程序:
http://adtmag.com/articles/2010/04/13/working-with-application-settings-in-monotouch.aspx
我们如何才能拥有一个默认不可见的字段,并且应用程序可以根据条件更改可见性?
根据这篇文章,我使用 root.plist 文件来设置我的 monotouch iPhone 应用程序:
http://adtmag.com/articles/2010/04/13/working-with-application-settings-in-monotouch.aspx
我们如何才能拥有一个默认不可见的字段,并且应用程序可以根据条件更改可见性?
默认情况下,设置是隐藏的。
如果你这样做:
var defaults = NSUserDefaults.StandardDefaults;
defaults.SetInt(21, "TestInt");
defaults.Synchronize();
Assert.That(defaults.IntForKey("TestInt"), Is.EqualTo(21));
如果您不在 plist 文件中设置任何内容,它将完全隐藏。(注意:我在这里使用 NUnit)
因此,如果您想要隐藏某些内容,请不要将值添加到 Settings.bundle 或 Root.plist。