mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-02 16:04:59 +00:00
16 lines
392 B
Objective-C
16 lines
392 B
Objective-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
|