mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
19 lines
350 B
Objective-C
19 lines
350 B
Objective-C
//
|
|
// UIView+PropertyBag.h
|
|
// TNSWidgets
|
|
//
|
|
// Created by Manol Donev on 21.08.18.
|
|
// Copyright © 2018 Telerik A D. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
@interface UIView (PropertyBag)
|
|
|
|
- (id) propertyValueForKey:(NSString*) key;
|
|
- (void) setPropertyValue:(id) value forKey:(NSString*) key;
|
|
|
|
@end
|