mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-08-24 03:26:09 -04:00
18 lines
387 B
Objective-C
18 lines
387 B
Objective-C
//
|
|
// FLEXImagePreviewViewController.h
|
|
// Flipboard
|
|
//
|
|
// Created by Ryan Olson on 6/12/14.
|
|
// Copyright (c) 2020 FLEX Team. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface FLEXImagePreviewViewController : UIViewController
|
|
|
|
+ (instancetype)previewForView:(UIView *)view;
|
|
+ (instancetype)previewForLayer:(CALayer *)layer;
|
|
+ (instancetype)forImage:(UIImage *)image;
|
|
|
|
@end
|