I have this xib file for my main window, and it contains 64 sliders to be able to create a matrix mix for an audio application. Setting the values using the sliders works, but I also want to save the values to the default preferences and load them back in the next time the application is started. I have this working, but the sliders are not representing the actual values when the preferences are loaded.
How would i do this, without having to create 64 IBOutlets
in my app controller?
I have the actual values in a NSMutableArray
.