20 lines
541 B
Objective-C
20 lines
541 B
Objective-C
//
|
|
// UIDatePicker+RACSignalSupport.m
|
|
// ReactiveObjC
|
|
//
|
|
// Created by Uri Baghin on 20/07/2013.
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
//
|
|
|
|
#import "UIDatePicker+RACSignalSupport.h"
|
|
#import <ReactiveObjC/RACEXTKeyPathCoding.h>
|
|
#import "UIControl+RACSignalSupportPrivate.h"
|
|
|
|
@implementation UIDatePicker (RACSignalSupport)
|
|
|
|
- (RACChannelTerminal *)rac_newDateChannelWithNilValue:(NSDate *)nilValue {
|
|
return [self rac_channelForControlEvents:UIControlEventValueChanged key:@keypath(self.date) nilValue:nilValue];
|
|
}
|
|
|
|
@end
|