- No adverts
- Entries should be age approprate (5-16)
- Be kind
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 Foundation | |
// Typesafe UTI, system APIs are all stringly typed 🙄 | |
public struct UTI: CustomDebugStringConvertible, CustomStringConvertible { | |
public enum Error: Swift.Error { | |
case invalidCharachters | |
} | |
private let rawUTI: String |
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
// | |
// SemanticVersioning.swift | |
// | |
// | |
// Created by Richard Stelling on 28/05/2020. | |
// | |
// The MIT License (MIT) | |
// | |
// Copyright (c) 2016-17 Richard Stelling (http://twitter.com/rjstelling) |
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
{ | |
"macOS Dynamic System Colors": { | |
"Alternate selected control text color": { | |
"Use for": "The text on a selected surface in a list or table.", | |
"AppKit API": "alternateSelectedControlTextColor" | |
}, | |
"Alternating content background colors": { | |
"Use for": "The backgrounds of alternating rows or columns in a list, table, or collection view.", | |
"AppKit API": "alternatingContentBackgroundColors" | |
}, |
Creating multiple Apple IDs for testing your app in the iOS Simulator can help isolate user experiences and troubleshoot issues effectively. Follow this easy guide to set up and successfully use multiple Apple IDs.
Each Apple ID you create must have:
- A unique email address (you cannot reuse emails across Apple IDs).
- Access to a phone number for Two-Factor Authentication (2FA).
Encountering a linker error in Xcode can be frustrating, especially when dealing with third-party Swift packages. One common error looks like this:
Undefined symbols for architecture arm64:
"___llvm_profile_runtime", referenced from:
___llvm_profile_runtime_user in PocketSVG.o
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
OlderNewer