12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #ifdef SHOULD_COMPILE_LOOKIN_SERVER
- //
- // LookinAttribute.m
- // qmuidemo
- //
- // Created by Li Kai on 2018/11/17.
- // Copyright © 2018 QMUI Team. All rights reserved.
- //
- #import "LookinAttribute.h"
- #import "LookinDisplayItem.h"
- @implementation LookinAttribute
- #pragma mark - <NSCopying>
- - (id)copyWithZone:(NSZone *)zone {
- LookinAttribute *newAttr = [[LookinAttribute allocWithZone:zone] init];
- newAttr.identifier = self.identifier;
- newAttr.displayTitle = self.displayTitle;
- newAttr.value = self.value;
- newAttr.attrType = self.attrType;
- newAttr.extraValue = self.extraValue;
- newAttr.customSetterID = self.customSetterID;
- return newAttr;
- }
- #pragma mark - <NSCoding>
- - (void)encodeWithCoder:(NSCoder *)aCoder {
- [aCoder encodeObject:self.displayTitle forKey:@"displayTitle"];
- [aCoder encodeObject:self.identifier forKey:@"identifier"];
- [aCoder encodeInteger:self.attrType forKey:@"attrType"];
- [aCoder encodeObject:self.value forKey:@"value"];
- [aCoder encodeObject:self.extraValue forKey:@"extraValue"];
- [aCoder encodeObject:self.customSetterID forKey:@"customSetterID"];
- }
- - (instancetype)initWithCoder:(NSCoder *)aDecoder {
- if (self = [super init]) {
- self.displayTitle = [aDecoder decodeObjectForKey:@"displayTitle"];
- self.identifier = [aDecoder decodeObjectForKey:@"identifier"];
- self.attrType = [aDecoder decodeIntegerForKey:@"attrType"];
- self.value = [aDecoder decodeObjectForKey:@"value"];
- self.extraValue = [aDecoder decodeObjectForKey:@"extraValue"];
- self.customSetterID = [aDecoder decodeObjectForKey:@"customSetterID"];
- }
- return self;
- }
- + (BOOL)supportsSecureCoding {
- return YES;
- }
- - (BOOL)isUserCustom {
- return [self.identifier isEqualToString:LookinAttr_UserCustom];
- }
- @end
- #endif /* SHOULD_COMPILE_LOOKIN_SERVER */
|