blob: d85a31a67a17db2b1b302b3c60feee35077b50f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// SDLVRHelpItem.m
//
#import "SDLVRHelpItem.h"
#import "NSMutableDictionary+Store.h"
#import "SDLImage.h"
#import "SDLNames.h"
@implementation SDLVRHelpItem
- (instancetype)initWithText:(NSString *)text image:(SDLImage *)image position:(UInt8)position {
self = [self initWithText:text image:image];
if (!self) {
return nil;
}
self.position = @(position);
return self;
}
- (instancetype)initWithText:(NSString *)text image:(SDLImage *)image {
self = [self init];
if (!self) {
return nil;
}
self.text = text;
self.image = image;
return self;
}
- (void)setText:(NSString *)text {
[store sdl_setObject:text forName:SDLNameText];
}
- (NSString *)text {
return [store sdl_objectForName:SDLNameText];
}
- (void)setImage:(SDLImage *)image {
[store sdl_setObject:image forName:SDLNameImage];
}
- (SDLImage *)image {
return [store sdl_objectForName:SDLNameImage ofClass:SDLImage.class];
}
- (void)setPosition:(NSNumber<SDLInt> *)position {
[store sdl_setObject:position forName:SDLNamePosition];
}
- (NSNumber<SDLInt> *)position {
return [store sdl_objectForName:SDLNamePosition];
}
@end
|