View RCGRightClickInteraction.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // RCGRightClickGestureRecognizer.swift | |
| // RightClickGestureRecognizer | |
| // | |
| // Created by Steven Troughton-Smith on 27/07/2022. | |
| // | |
| import UIKit | |
| class RCGRightClickInteraction: UIContextMenuInteraction { |
View UICollectionView+Swizzles.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // MRDSwizzleController.swift | |
| // MobileRadio | |
| // | |
| // Created by Steven Troughton-Smith on 22/12/2021. | |
| // Copyright © 2021 High Caffeine Content. All rights reserved. | |
| // | |
| import UIKit |
View tbdswizzler.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // main.m | |
| // tbdswizzler | |
| // | |
| // Created by Steven Troughton-Smith on 10/12/2016. | |
| // Copyright © 2016 High Caffeine Content. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> |
View palettes.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Autumn Approaches" => { | |
| "colors" => [ | |
| 0 => "#220204" | |
| 1 => "#9f311b" | |
| 2 => "#e17817" | |
| 3 => "#6a1d18" | |
| 4 => "#d64019" | |
| ] | |
| } |
View PSTLDraggableColorSwatchView.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // PSTLDraggableColorSwatchView.h | |
| // Pastel | |
| // | |
| // Created by Steven Troughton-Smith on 06/03/2020. | |
| // Copyright © 2020 Steven Troughton-Smith. All rights reserved. | |
| // | |
| @import UIKit; |
View Info.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <key>NSAppleScriptEnabled</key> | |
| <true/> | |
| <key>OSAScriptingDefinition</key> | |
| <string>ScriptableTasks.sdef</string> |
View UIColor+AccentColor.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @implementation UIColor (AppleAccentColor) | |
| +(UIColor *)CATALYSTAccentColor | |
| { | |
| BOOL hasAccentSet = ([[NSUserDefaults standardUserDefaults] objectForKey:@"AppleAccentColor"] != nil); | |
| NSInteger systemAccentColor = [[NSUserDefaults standardUserDefaults] integerForKey:@"AppleAccentColor"]; | |
| UIColor *returnColor = [UIColor systemBlueColor]; | |
| if (hasAccentSet) |
View UIView+Tooltips.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // UIView+Tooltips.h | |
| // Crossword | |
| // | |
| // Created by Steven Troughton-Smith on 13/09/2019. | |
| // Copyright © 2019 Steven Troughton-Smith. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> |
NewerOlder