开发者

NSUserDefaults with UISegmentedControl

开发者 https://www.devze.com 2023-04-02 10:53 出处:网络
I have three UISegmented controls (In a utility application), each of which store their selected segments in UserDefaults when the values is changed. When the settings pane is loaded (the side with th

I have three UISegmented controls (In a utility application), each of which store their selected segments in UserDefaults when the values is changed. When the settings pane is loaded (the side with the three segmented controls), I access NSUserDefaults to highlight the current settings. For whatever reason, two of them work perfectly as desired, but one seems to randomly fluctuate when the user moves from settings pane to the mainview and back to the settings pane......

This is used to set the selected segment on flip to settings pane:

int setting2 = [defaults integerForKey:SegmentKey];
if(setting2 == 0)
{ NSLog(@"selected 0"); segmentedControlC.selectedSegmentIndex = 0; }
else
{ NSLog(@"selected 1"); segmentedControlC.selectedSegmentIndex = 1; }

This is used to assign a value to the key "SegmentKe开发者_运维技巧y" when the user makes a change to the selectedSegmentIndex

[defaults setInteger:segmentedControlC.selectedSegmentIndex forKey:SegmentKey];

Yet, for some reason, when I (in the simulator) press the "0" index, flip back to the main view, then return, segment one is highlighted....


Make sure that you use a unique key dor each integer in NSUserDefaults. And be sure that you synchronize NSUserDefaults after you set the integer. Also this is faster for loading your keys:

segmentedControlC.selectedSegmentIndex = [defaults integerForKey:key];
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号