blob: 1a94caa3766274102eebf66b7e46149d3b0c3236 (
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
|
// SDLSubscribeButton.m
//
#import "SDLSubscribeButton.h"
#import "NSMutableDictionary+Store.h"
#import "SDLNames.h"
NS_ASSUME_NONNULL_BEGIN
@implementation SDLSubscribeButton
- (instancetype)init {
if (self = [super initWithName:SDLNameSubscribeButton]) {
}
return self;
}
- (instancetype)initWithHandler:(nullable SDLRPCButtonNotificationHandler)handler {
self = [self init];
if (!self) {
return nil;
}
_handler = handler;
return self;
}
- (instancetype)initWithButtonName:(SDLButtonName)buttonName handler:(nullable SDLRPCButtonNotificationHandler)handler {
self = [self init];
if (!self) {
return nil;
}
self.buttonName = buttonName;
self.handler = handler;
return self;
}
- (void)setButtonName:(SDLButtonName)buttonName {
[parameters sdl_setObject:buttonName forName:SDLNameButtonName];
}
- (SDLButtonName)buttonName {
return [parameters sdl_objectForName:SDLNameButtonName];
}
-(id)copyWithZone:(nullable NSZone *)zone {
SDLSubscribeButton *newButton = [super copyWithZone:zone];
newButton->_handler = self.handler;
return newButton;
}
@end
NS_ASSUME_NONNULL_END
|