mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-10-29 20:10:41 -04:00
19 lines
352 B
Objective-C
19 lines
352 B
Objective-C
//
|
|
// FLEXWebViewController.m
|
|
// Flipboard
|
|
//
|
|
// Created by Ryan Olson on 6/10/14.
|
|
// Copyright (c) 2020 FLEX Team. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface FLEXWebViewController : UIViewController
|
|
|
|
- (id)initWithURL:(NSURL *)url;
|
|
- (id)initWithText:(NSString *)text;
|
|
|
|
+ (BOOL)supportsPathExtension:(NSString *)extension;
|
|
|
|
@end
|