Skip to content

Instantly share code, notes, and snippets.

View SergLam's full-sized avatar
😊
Try to make your code better!

Serhii Liamtsev SergLam

😊
Try to make your code better!
View GitHub Profile
@SergLam
SergLam / View+SyncPublishedBinding.swift
Created March 31, 2025 14:32
Fix for "Publishing changes from within view updates is not allowed" SwiftUI console error.
import SwiftUI
public extension View {
/// Extension to sync local `@State` var with external `Binding`.
///
/// Binding to `@Published` property of `ObservableObject` causes warning
///
/// Publishing changes from within view updates is not allowed.
func sync<T: Equatable>(_ external: Binding<T>, with local: Binding<T>) -> some View {
onChange(of: external.wrappedValue) { _, newValue in
@SergLam
SergLam / UUID+Extensions.swift
Last active March 28, 2025 11:26 — forked from xsleonard/UUID+Extensions.swift
Swift: Convert UUID to and from Data and Int64
import Foundation
extension UUID {
// UUID is 128-bit, we need two 64-bit values to represent it
var integers: (Int64, Int64) {
var first: UInt64 = 0
first |= UInt64(uuid.0)
first |= UInt64(uuid.1) << 8
first |= UInt64(uuid.2) << (8 * 2)
first |= UInt64(uuid.3) << (8 * 3)
// https://azamsharp.com/2024/12/18/the-ultimate-guide-to-validation-patterns-in-swiftui.html
import SwiftUI
// Validation View Modifier
struct ValidationModifier: ViewModifier {
let errorMessage: String?
func body(content: Content) -> some View {
@SergLam
SergLam / HiddenMacOSDebuggingPanel.md
Created April 18, 2024 09:37 — forked from usagimaru/HiddenMacOSDebuggingPanel.md
Enables useful debugging panel in macOS apps

Use _NS_4445425547 or NS🐞 for enables debuggging panel. When enabled it, a ladybug 🐞 menu appears in the app menu bar.

“4445425547” means DEBUG in Unicode table.

0x44=D
0x45=E
0x42=B
0x55=U
0x47=G

@SergLam
SergLam / SwiftUIDoubleClickModifier.swift
Created March 11, 2024 12:02 — forked from joelekstrom/SwiftUIDoubleClickModifier.swift
A view modifier that can reliably detect double clicks on macOS, even in List
extension View {
/// Adds a double click handler this view (macOS only)
///
/// Example
/// ```
/// Text("Hello")
/// .onDoubleClick { print("Double click detected") }
/// ```
/// - Parameters:
/// - handler: Block invoked when a double click is detected
@SergLam
SergLam / Generics+Utilities.swift
Created November 9, 2023 09:13 — forked from edc0der/Generics+Utilities.swift
Get class name without namespace in Swift
func className(target: AnyObject) -> String {
let nameSpaceClassName = NSStringFromClass(type(of: target))
if let className = nameSpaceClassName.components(separatedBy: ".").last {
return className
}
return ""
}
@SergLam
SergLam / AsyncURLSessionTask.swift
Last active September 29, 2023 17:48
Async-await URLSesionTask API wrapper.
// TODO: - Change raw completion handlers once Swift issue is resolved.
// https://github.com/apple/swift/issues/60488
public typealias DataTaskCompletion = (Data?, URLResponse?, Error?) -> Void
public typealias DownloadTaskCompletion = (URL?, URLResponse?, Error?) -> Void
/// async-await URLSessionTask wrapper with `cancel` and `suspend` functionality.
public class AsyncURLSessionTask: Identifiable {
enum State {
case ready
@SergLam
SergLam / UserDefaults+Codable.swift
Created May 24, 2023 08:51
UserDefaults+Codable - handy extension for Codable models storing in UserDefaults
import Foundation
private let jsonDecoder: JSONDecoder = {
let decoder = JSONDecoder()
if #available(iOS 10.0, *) {
decoder.dateDecodingStrategy = JSONDecoder.DateDecodingStrategy.iso8601
}
return decoder
}()
@SergLam
SergLam / Animate-Border-Width-And-Color.m
Last active May 31, 2022 17:51
UIView animation with CABasicAnimation - border width and color
static const CGFloat kCornerRadiusStateNormal = 20.0f;
static const CGFloat kCornerRadiusStateSelected = 40.0f;
static const CGFloat kBorderWidth = 3.0f;
// First variant, long and ugly
- (void)updateStateAnimated:(BOOL)animated {
if (animated) {
CAMediaTimingFunction* timing =[[CAMediaTimingFunction alloc] initWithControlPoints:0.2f:0.0f:0.0f:1.0f];
@SergLam
SergLam / SampleTableViewCell.swift
Created April 25, 2022 18:20
SwiftUI Previews for UIKit
import UIKit
final class SampleTableViewCell: UITableViewCell {
static let cellHeight: CGFloat = 60.0
static let reuseIdentifier: String = String(describing: SampleTableViewCell.self)
private let nameLabel: UILabel = UILabel()