16 lines
293 B
Objective-C
16 lines
293 B
Objective-C
//
|
|
// DemoSSRVC.h
|
|
// Example
|
|
//
|
|
// Created by pengfei.zhou on 2022/11/7.
|
|
// Copyright © 2022 pengfei.zhou. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
@interface DemoSSRVC : UIViewController
|
|
- (instancetype)initWithPath:(NSString *)filePath;
|
|
@end
|