ResultAddition.m 407 B

12345678910111213141516171819202122
  1. //
  2. // ApexResultAddition.m
  3. // Apex Mobile
  4. //
  5. // Created by Jack on 2019/1/19.
  6. // Copyright © 2019 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import "ResultAddition.h"
  9. @implementation ResultAddition
  10. - (void)setValue:(id)value forUndefinedKey:(NSString *)key {
  11. }
  12. - (void)setName:(NSString *)name {
  13. name = [NSString stringWithFormat:@"%@: ", name];
  14. _name = name;
  15. }
  16. @end