10 |
11 | NS_ASSUME_NONNULL_BEGIN
12 |
13 | @interface TabBarController : UITabBarController
14 |
15 | - (void)showHelpOverlay;
16 |
17 | @end
18 |
19 | NS_ASSUME_NONNULL_END
20 |
--------------------------------------------------------------------------------
/xFonts/TabBarController.m:
--------------------------------------------------------------------------------
1 | //
2 | // TabBarController.m
3 | // xFonts
4 | //
5 | // Created by Craig Hockenberry on 4/19/20.
6 | // Copyright © 2020 manolo. All rights reserved.
7 | //
8 |
9 | #import "TabBarController.h"
10 |
11 | @interface TabBarController ()
12 |
13 | @end
14 |
15 | @implementation TabBarController
16 |
17 | - (void)showHelpOverlay
18 | {
19 | [self performSegueWithIdentifier:@"helpOverlay" sender:self];
20 | }
21 |
22 | - (IBAction)unwindToTabBar:(UIStoryboardSegue *)unwindSegue
23 | {
24 | [self dismissViewControllerAnimated:YES completion:nil];
25 | }
26 |
27 | @end
28 |
--------------------------------------------------------------------------------
/xFonts/ViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.h
3 | // xFonts
4 | //
5 | // Created by manolo on 2/1/17.
6 | // Copyright © 2017 manolo. All rights reserved.
7 | //
8 |
9 | @import UIKit;
10 | @import CoreText;
11 |
12 | #import "FontInfo.h"
13 |
14 | @interface ViewController : UITableViewController
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/xFonts/iTunes Screen Shot.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/manolosavi/xFonts/b0d4ee312718b3a78945b06b0215d117904c2006/xFonts/iTunes Screen Shot.psd
--------------------------------------------------------------------------------
/xFonts/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
109 |
110 | Install
111 |
112 |
113 | Fonts Ready to Download
114 |
115 | A configuration profile with your fonts is ready to download into Settings. Tap the button below to begin, then tap Allow when prompted.
116 | Download Fonts
117 | When you see the confirmation alert on this page, open the Settings app and navigate to General > VPN & Device Management to install the $(PRODUCT_NAME) Installation profile.
118 | After Settings are updated, the fonts will appear in other apps like Pages, Keynote, Numbers, and Tot.
119 |
120 |
121 |
--------------------------------------------------------------------------------
/xFonts/main.m:
--------------------------------------------------------------------------------
1 | //
2 | // main.m
3 | // xFonts
4 | //
5 | // Created by manolo on 2/1/17.
6 | // Copyright © 2017 manolo. All rights reserved.
7 | //
8 |
9 | @import UIKit;
10 | #import "AppDelegate.h"
11 |
12 | int main(int argc, char * argv[]) {
13 | @autoreleasepool {
14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/xFonts/xFonts Icon.sketch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/manolosavi/xFonts/b0d4ee312718b3a78945b06b0215d117904c2006/xFonts/xFonts Icon.sketch
--------------------------------------------------------------------------------
/xFonts/xFonts/Base.lproj/Launch Screen.storyboard:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------