Skip to content

Instantly share code, notes, and snippets.

View Caul58's full-sized avatar
🤙

Carlos R. Caul58

🤙
View GitHub Profile
@Caul58
Caul58 / AttributedStringToString.md
Last active December 21, 2024 10:55
How to fetch an String from an AttributedString in Swift?

Two options arround AttributedString.CharacterView:

First option:

This option has a performance pitfall, cause it's using a for-in to iterate in characters.

let str: String = String(attrStr.characters)
@Caul58
Caul58 / DifferentiOSVersionTests.swift
Last active November 14, 2024 14:11
@available statement in a tests class has just effect for the compiler, not to skip tests contained. So you have to do it manually.
/// First option: if you have a reduced number of tests with this issue.
@available(iOS 17.0, *)
class FirstOptionTests: XCTestCase {
func testStuffOnlyAvailableInIOS17() throws {
guard #available(iOS 17.0, *) else {
throw XCTSkip("Trying to run code in an unsupported iOS version")
}
// All the stuff just available since iOS 17.0
}