Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a segment on my tableview controller.

segmentIndex=0 -> tableView getting loaded -> tap. navigating to another tableViewController. segmentIndex=1 -> tableView getting loaded -> tap. navigating to another tableViewController.

Switching tableviews happens fine. The problem is that after navigating back I need to remember the previous index value. How to implement it? My current code:

- viewWillAppear
self.segment=[[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:@"Nominals",@"Coinage",nil]];
[self.segment setFrame:CGRectMake(80, 0, 200, 30)];
[self.segment setSegmentedControlStyle:UISegmentedControlStyleBar];
//self.segment.selectedSegmentIndex=0;
[self.segment addTarget:self action:@selector(segmentValueChaged:) forControlEvents:UIControlEventValueChanged];
[[self navigationItem] setTitleView:self.segment];


-(IBAction)segmentValueChaged:(id)sender
{
switch (self.segment.selectedSegmentIndex) 
{
    case 0:
    {
        DBAccess *access=[[DBAccess alloc]init];
        self.items=[access returnNominals:self.subCountryID nk:fromPeriod];
        [access closeDataBase];
        self.tableView.hidden=NO;
        [self.tableView reloadData];
        self.segmentIndex=0;
         break;
    }
    case 1:
    {
        DBAccess *access=[[DBAccess alloc]init];
        self.coinageArr=[access returnCoinage:fromPeriod period:subCountryID];
        self.tableView.hidden=NO;
        [self.tableView reloadData];
        self.segmentIndex=1;
        break;
    }
}
}

Thank you in advance guys.

EDIT:

self.segment=[[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:@"Nominals",@"Coinage",nil]];
[self.segment setFrame:CGRectMake(80, 0, 200, 30)];
[self.segment setSegmentedControlStyle:UISegmentedControlStyleBar];
if(!self.segmentIndex)
{
    self.segment.selectedSegmentIndex=-1;
}
else 
{
    self.segment.selectedSegmentIndex=self.segmentIndex;
}

//self.segment.selectedSegmentIndex=self.segmentIndex;
[self.segment addTarget:self action:@selector(segmentValueChaged:) forControlEvents:UIControlEventValueChanged];
[[self navigationItem] setTitleView:self.segment];


-(void)viewWillDisappear:(BOOL)animated
{
switch (self.segment.selectedSegmentIndex) 
{
    case 0:
    {
        self.segmentIndex=0;
        break;
    }
    case 1:
    {
        self.segmentIndex=1;
        break;
    }
}

}
share|improve this question

2 Answers

up vote 2 down vote accepted

You store your value in viewWillDisappear and when you come back to your controller viewWillAppearyou set back the value you stored. So what you could also do is, start by setting the value to... let's say -1. if in your viewWillAppearvalue is -1, then you set your default value, else, you use that value.

- (void)viewWillAppear:(BOOL)animated {
    self.segment=[[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:@"Nominals",@"Coinage",nil]];
    [self.segment setFrame:CGRectMake(80, 0, 200, 30)];
    [self.segment setSegmentedControlStyle:UISegmentedControlStyleBar];

    if (self->_currentIndex == -1) {
        NSInteger myDefaultValue = 0;
        self.segment.selectedSegmentIndex=myDefaultValue;
    } else {
        self.segment.selectedSegmentIndex=self->_currentIndex;
    }

   [self.segment addTarget:self action:@selector(segmentValueChaged:) forControlEvents:UIControlEventValueChanged];
   [[self navigationItem] setTitleView:self.segment];
}

You also have to store the value when the controller is about to disappear.

- (void)viewWillDisappear:(BOOL)animated {
    self->_currentIndex = self.segment.selectedSegmentIndex;
}

Where you defined NSInteger _currentIndex; in your interface

share|improve this answer
I tried to do it in the way you advised me. will publish edit in few minutes, but it didn't work. – Nathan Apr 30 '12 at 16:37
please, see edit. It doesn't work as well. Where I went wrong? – Nathan Apr 30 '12 at 16:45
yes, I define int currentIndex in interface. – Nathan Apr 30 '12 at 16:47
sorry, but your code also doesn't work. – Nathan Apr 30 '12 at 16:50
2  
yes, it works. thnk you. I am just stewed up in other spot. – Nathan Apr 30 '12 at 16:56

You could store index value in NSUserDefaults.And later when You navigating back.then in viewWillAppear you can retreive the integer value from NSUserDefaults and make the selected or deselected index depending upon retreived integer value.For example:

-(IBAction)segmentValueChaged:(id)sender

{ switch (self.segment.selectedSegmentIndex) {

case 0:

{ break;
}

case 1
{ break;

}
} //Now Save selected index in NSUserDefaults like this:
// Get the shared defaults object.

NSUserDefaults *settings = [NSUserDefaults standardUserDefaults];

// Save the index.
[settings setInteger:self.segment.selectedSegmentIndex forKey:@"MySelectedValueKey"];

}
And in your viewWillAppear you can get value from the NSUserDefaults; that is which index to be selected.

NSUserDefaults *settings = [NSUserDefaults standardUserDefaults];

if([settings objectForKey:@"MySelectedValueKey"] == 0)
{ //Set up for index 0 }

if([settings objectForKey:@"MySelectedValueKey"] == 1)
{ //Set up for index 1 }

Happy to help :)

share|improve this answer
This is also good idea, but NSUerDefaults I am using for other cases. Thank you for answer. – Nathan Apr 30 '12 at 18:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.