Skip to content

Instantly share code, notes, and snippets.

View codingmanu's full-sized avatar
🎯
Focusing

Manuel Gomez codingmanu

🎯
Focusing
  • Self
  • Cadiz, Spain
View GitHub Profile
@codingmanu
codingmanu / TextExtension.swift
Last active June 20, 2019 21:39
SwiftUI Text coloring word initializer
// SwiftUI Text Initializer replacing occurences of a given word with a colored version.
// Made by Manuel Gomez (@codingManu) on 2019/06/19
extension Text {
public init<S>(_ content: S, making: S, _ color: Color) where S : StringProtocol {
let comps = content.components(separatedBy: making)
var baseText = Text("")
if comps[0] != making {
@codingmanu
codingmanu / Xcode.md
Created August 27, 2019 21:27
XCode tip and tricks
  • To print Simulator's document folder route in macOS, add a breakpoint anywhere in an App and write the following in the XCode console:

po NSHomeDirectory()

@codingmanu
codingmanu / ArcGIS Tips.md
Created August 27, 2019 21:29
ArcGIS iOS SDK Tips