Skip to content

Instantly share code, notes, and snippets.

@mikeabdullah
Created December 19, 2014 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeabdullah/20813743ccbee77223e5 to your computer and use it in GitHub Desktop.
Save mikeabdullah/20813743ccbee77223e5 to your computer and use it in GitHub Desktop.
Restoring selected tab of paged table view controllers
- (void)encodeRestorableStateWithCoder:(NSCoder *)coder {
[super encodeRestorableStateWithCoder:coder];
[coder encodeInteger:self.mode forKey:@"mode"];
}
- (void)decodeRestorableStateWithCoder:(NSCoder *)coder {
[super decodeRestorableStateWithCoder:coder];
self.mode = [coder decodeIntegerForKey:@"mode"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment