blob: 6c08bca6c822e4f1f0e533c5d717e3ccb80847f0 (
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
|
// SDLSubscribeButton.m
//
#import "SDLSubscribeButton.h"
#import "SDLNames.h"
@implementation SDLSubscribeButton
- (instancetype)init {
if (self = [super initWithName:SDLNameSubscribeButton]) {
}
return self;
}
- (instancetype)initWithHandler:(SDLRPCNotificationHandler)handler {
self = [self init];
if (!self) {
return nil;
}
_handler = handler;
return self;
}
- (instancetype)initWithButtonName:(SDLButtonName)buttonName handler:(SDLRPCNotificationHandler)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 {
NSObject *obj = [parameters sdl_objectForName:SDLNameButtonName];
return (SDLButtonName)obj;
}
@end
|