-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (65 loc) · 2.79 KB
/
Copy pathindex.html
File metadata and controls
70 lines (65 loc) · 2.79 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
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>iOS Runtime Header Browser</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/fuse.js/dist/fuse.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github-dark.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<link href="https://fonts.cdnfonts.com/css/cascadia-code" rel="stylesheet">
</head>
<body>
<div id="container">
<div id="sidebar-container">
<div style="text-align: center;">
<div class="segmented-control">
<input type="radio" id="framework" name="segment">
<label for="framework">Framework</label>
<input type="radio" id="header" name="segment" checked>
<label for="header">Header</label>
<div class="background"></div>
</div>
</div>
<div style="padding-top: 15px">
<input type="text" class="search-bar" id="search" placeholder="Header Search" autocomplete="off">
<div id="dropdown-container">
<select id="version-dropdown">
<option value="" disabled selected>iOS Version</option>
<option value="17.0" disabled>iOS 17.0 (Coming Soon™)</option>
<option value="16.5">iOS 16.5</option>
<option value="16.0">iOS 16.0</option>
<option value="15.6">iOS 15.6</option>
<option value="15.0">iOS 15.0</option>
</select>
</div>
<div id="search-results-list"></div>
</div>
</div>
<div id="main-content">
<h1 id="title"></h1>
<div id="framework-list-container" style="display: none;">
<input type="text" class="search-bar" id="framework-search" placeholder="{{FRAMEWORK}}"
autocomplete="off">
<div id="framework-results-list"></div>
</div>
<pre>
<code id="header-container" class="language-objectivec">
/*
* iOS Runtime Header Browser
* Generated using ktool v2.0.0
* Current versions: iOS 15.0, iOS 15.6, iOS 16.0 & iOS 16.5
*
* ktool: https://github.com/0cyn/ktool
*/
</code>
</pre>
<div id="download-container"></div>
</div>
</div>
<script>hljs.highlightAll();</script>
<script src="index.js"></script>
</body>
</html>