| 12345678910111213141516171819202122 |
- //
- // ApexResultAddition.m
- // Apex Mobile
- //
- // Created by Jack on 2019/1/19.
- // Copyright © 2019 United Software Applications, Inc. All rights reserved.
- //
- #import "ResultAddition.h"
- @implementation ResultAddition
- - (void)setValue:(id)value forUndefinedKey:(NSString *)key {
-
- }
- - (void)setName:(NSString *)name {
- name = [NSString stringWithFormat:@"%@: ", name];
- _name = name;
- }
- @end
|