-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPDFViewiOS.uno
More file actions
62 lines (38 loc) · 1.18 KB
/
PDFViewiOS.uno
File metadata and controls
62 lines (38 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
namespace Native.iOS
{
using Uno;
using Uno.UX;
using Uno.Compiler.ExportTargetInterop;
using Fuse.Controls.Native.iOS;
[Require("Source.Include", "UIKit/UIKit.h")]
[Require("Source.Include", "WebKit/WebKit.h")]
extern(iOS) class PDF: LeafView, IPDF
{
PDFHost _host;
public PDF(PDFHost host) : base(Create())
{
_host = host;
}
void IPDF.Load(string fileName)
{
Load(Handle, fileName);
}
[Foreign(Language.ObjC)]
static ObjC.Object Create()
@{
WKWebView *webView = [[WKWebView alloc]init];
return webView;
@}
[Foreign(Language.ObjC)]
void Load(ObjC.Object handle, string fileName)
@{
WKWebView* webView = (WKWebView*)handle;
UIView* c = [[UIView alloc] init];
NSString *documentsDirectory = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
NSString *path = [documentsDirectory stringByAppendingPathComponent:fileName];
NSURL *targetURL = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
[webView loadRequest:request];
@}
}
}