1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 03:25:03 +03:00
vimr/VimR/NetUtils.h
Tae Won Ha 1a7f633cea
GH-339 Use a http server to serve the markdown preview html file (and the content of the containing folder)
- WKWebView does not let you load files in arbitrary folders when you use loadHTMLString()
- loadFileURL can load files from one directories, but you'd have to create a temporary file in the folder
2017-01-13 08:11:47 +01:00

14 lines
196 B
Objective-C

//
// Created by Tae Won Ha on 1/13/17.
// Copyright (c) 2017 Tae Won Ha. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface NetUtils : NSObject
+ (in_port_t)openPort;
@end