17 lines
306 B
Objective-C
17 lines
306 B
Objective-C
//
|
|
// _ImageController.h
|
|
// Example_Objc
|
|
//
|
|
// Created by man 7/25/19.
|
|
// Copyright © 2020 man. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "_FileInfo.h"
|
|
|
|
@interface _ImageController : UIViewController
|
|
|
|
- (instancetype)initWithImage:(UIImage *)image fileInfo:(_FileInfo *)fileInfo;
|
|
|
|
@end
|