Peter 3b155750f5 Add 'submodules/lottie-ios/' from commit 'd40e390fbe6d7ef3b417876af6fdce5e4d2aa335'
git-subtree-dir: submodules/lottie-ios
git-subtree-mainline: 76e5a7fab6b0222780f346530cdbeeff96f3e105
git-subtree-split: d40e390fbe6d7ef3b417876af6fdce5e4d2aa335
2019-06-11 18:54:21 +01:00

23 lines
545 B
Objective-C

//
// LottieFilesUrl.h
// lottie-ios
//
// Created by Fabio Nuno on 06/08/17.
// Copyright © 2017 Brandon Withrow. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface LottieFilesURL : NSObject
- (nullable instancetype)initWithURL:(nonnull NSURL *)url;
@property (nonatomic, readonly) int ID;
@property (nonatomic, nonnull, readonly) NSURL *baseURL;
@property (nonatomic, nonnull, readonly) NSURL *jsonURL;
@property (nonatomic, nonnull, readonly) NSString *animationName;
+(BOOL)isValidURL:(nonnull NSURL *)url;
@end