Files
featherVoice/Pods/ReactiveObjC/ReactiveObjC/UIStepper+RACSignalSupport.m
2025-08-08 10:49:36 +08:00

20 lines
536 B
Objective-C

//
// UIStepper+RACSignalSupport.m
// ReactiveObjC
//
// Created by Uri Baghin on 20/07/2013.
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
//
#import "UIStepper+RACSignalSupport.h"
#import <ReactiveObjC/RACEXTKeyPathCoding.h>
#import "UIControl+RACSignalSupportPrivate.h"
@implementation UIStepper (RACSignalSupport)
- (RACChannelTerminal *)rac_newValueChannelWithNilValue:(NSNumber *)nilValue {
return [self rac_channelForControlEvents:UIControlEventValueChanged key:@keypath(self.value) nilValue:nilValue];
}
@end