1
This repository has been archived on 2022-08-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
notifications-for-youtube/Notifications for YouTube/NumberValueTransformer.h
Kim Wittenburg 15062dfb27 Archive Project
2017-07-25 17:21:13 +02:00

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