mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-07 19:05:38 +00:00
16 lines
392 B
C
16 lines
392 B
C
|
//
|
||
|
// NSBundle+DataResource.h
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 02/10/2016.
|
||
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@interface NSBundle (DataResource)
|
||
|
|
||
|
- (nullable NSData *)dataForResource:(nullable NSString *)resource withExtension:(nullable NSString *)extension subdirectory:(nullable NSString *)subdirectory;
|
||
|
|
||
|
@end
|