This file contains hidden or 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
| // | |
| // NSApplication+openSettings.swift | |
| // | |
| // Created by Stephan Casas on 12/3/23. | |
| // | |
| import SwiftUI; | |
| fileprivate let kAppMenuInternalIdentifier = "app" | |
| fileprivate let kSettingsLocalizedStringKey = "Settings\\U2026"; |
This file contains hidden or 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
| import SwiftUI | |
| final class SwiftUIView<Content: View>: UIView { | |
| private var heightConstraint: NSLayoutConstraint? | |
| init(content: Content, onSizeChanged: @escaping (CGSize) -> Void) { | |
| super.init(frame: .zero) | |
| let sizeReadingContent = content.readSize { [weak self] newSize in |
This file contains hidden or 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
| /// MIT License | |
| /// | |
| /// Copyright (c) 2021 Lukas Kubanek, Structured Path GmbH | |
| /// | |
| /// Permission is hereby granted, free of charge, to any person obtaining a copy | |
| /// of this software and associated documentation files (the "Software"), to deal | |
| /// in the Software without restriction, including without limitation the rights | |
| /// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| /// copies of the Software, and to permit persons to whom the Software is | |
| /// furnished to do so, subject to the following conditions: |
This file contains hidden or 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
| CFLAGS := -O2 -fPIC | |
| test: libdontfree.dylib test.swift | |
| swiftc -L. -ldontfree test.swift | |
| %.o: %.c | |
| $(CC) $(CFLAGS) -c -o $@ $^ | |
| libdontfree.dylib: dont-free.o | |
| $(CC) $(LDFLAGS) -shared -o $@ $^ |
This file contains hidden or 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
| import SwiftUI | |
| import Combine | |
| public struct ChangeObserver<V: Equatable>: ViewModifier { | |
| public init(newValue: V, action: @escaping (V) -> Void) { | |
| self.newValue = newValue | |
| self.newAction = action | |
| } | |
| private typealias Action = (V) -> Void |
This file contains hidden or 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
| static const CGFloat kFontWeightEpsilon = FLT_EPSILON; | |
| @implementation UIFont (CustomizedDynamicType) | |
| + (nonnull UIFont *)preferredFontWithDefaultSize:(CGFloat)size | |
| textStyle:(nonnull UIFontTextStyle)textStyle { | |
| return [self preferredFontWithDefaultSize:size | |
| textStyle:textStyle | |
| fontWeight:UIFontWeightRegular | |
| italic:NO]; |
This file contains hidden or 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
| extension Data { | |
| init?(hexString: String) { | |
| let count = hexString.count / 2 | |
| var data = Data(capacity: count) | |
| var i = hexString.startIndex | |
| for _ in 0 ..< count { | |
| let j = hexString.index(after: i) | |
| if var byte = UInt8(hexString[i ... j], radix: 16) { | |
| data.append(&byte, count: 1) | |
| } else { |
This file contains hidden or 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
| // | |
| // EmptySwiftUIModifiers.swift | |
| // Architectory | |
| // | |
| // Created by Nikita Patskov on 09.09.2020. | |
| // | |
| import SwiftUI | |
| struct TestView: View { |
This file contains hidden or 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
| let queue = DispatchQueue(label: "Queue", qos: .default, attributes: [.concurrent], autoreleaseFrequency: .workItem, target: .global(qos: .default)) | |
| let cancellable = [1, 2, 3, 4, 5].publisher | |
| .receive(on: queue) | |
| .map { longRunningFunc(value: $0) } | |
| .receive(on: DispatchQueue.main) | |
| .sink (receiveCompletion: { completion in | |
| Swift.print(completion) | |
| }, receiveValue: { value in | |
| Swift.print(value) |