17 lines
613 B
Objective-C
Executable File
17 lines
613 B
Objective-C
Executable File
//
|
|
// TimeIntervalValueTransformer.h
|
|
// Notifications for YouTube
|
|
//
|
|
// Created by Kim Wittenburg on 20.07.13.
|
|
// Copyright (c) 2013 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
/* The number value transformer transforms a number into... a number. Into exactly the same number. You can use this transformer if you get an type error binding a property of the right type. For example if you bind the selected tag of a popup button to an NSTimeInterval property.
|
|
This transformer does allow reverse transformation.
|
|
*/
|
|
@interface NumberValueTransformer : NSValueTransformer
|
|
|
|
@end
|