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
Installing older version of Gitkraken is the only solution I guess to work on private repo if you want it for free and without student developer pack. | |
From the release notes, the last version to support private repo is v6.5.1. |
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
// | |
// DocumentPicker.swift | |
import UIKit | |
import MobileCoreServices | |
protocol DocumentDelegate: class { | |
func didPickDocument(document: Document?) | |
} |
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
// clean remore memory leak | |
protocol Weakifiable: class { } | |
extension NSObject: Weakifiable {} | |
extension Weakifiable { | |
func weakify<T, Z>(_ code: @escaping (Self, T) -> Z) -> (T) -> Z? { | |
return { [weak self] data in | |
guard let self = self else { return nil} |
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
Registered Name: https://zhile.io | |
License Key: 48891cf209c6d32bf4 |
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 | |
import SwiftUI | |
let isUITesting = /* your UI test detection here */ | |
@main | |
struct EntryPoint { | |
static func main() { | |
if isUITesting { | |
UITestApp.main() |
OlderNewer