Guest User

Untitled

a guest
May 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. - (void)encodeWithCoder:(CPCoder)aCoder
  2. {
  3.  
  4. [super encodeWithCoder:aCoder];
  5. [aCoder encodeBool:_isAnimating forKey:EKActIndViewIsAnimating];
  6. }
  7.  
  8. - (id)initWithCoder:(CPCoder)aCoder
  9. {
  10. self = [super initWithCoder:aCoder];
  11. if (self) {
  12.  
  13. if ([aCoder decodeBoolForKey:EKActIndViewIsAnimating] || NO) {
  14. _isAnimating = YES;
  15. } else {
  16. _isAnimating = NO;
  17. }
  18.  
  19. }
  20. return self;
  21. }
Add Comment
Please, Sign In to add comment