我的应用程序中有一个功能,允许用户更改应用程序顶部和底部栏的颜色。但我不知道如何保存这种颜色变化,以便它保持变化。我尝试使用NSUserDefaults
但没有用。我正在使用这种方法来设置颜色:
-(IBAction)uiColorGreen:(id)sender{
topBar.tintColor = [UIColor greenColor];
bottomBar.tintColor = [UIColor greenColor];
我将如何保存topBar
和bottomBar
颜色属性,以便在启动应用程序时应用所选颜色?