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 yaml | |
import subprocess | |
import sys | |
import re | |
import os | |
import concurrent.futures | |
from concurrent.futures import ProcessPoolExecutor | |
from tqdm import tqdm | |
def demangle_symbol(symbol): |
This file has been truncated, but you can view the full file.
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
--- !tapi-tbd | |
tbd-version: 4 | |
targets: [ armv7-ios, armv7s-ios, arm64-ios, arm64e-ios ] | |
install-name: '/System/Library/Frameworks/SwiftUICore.framework/SwiftUICore' | |
current-version: 6.1.19 | |
swift-abi-version: 7 | |
allowable-clients: | |
- targets: [ armv7-ios, armv7s-ios, arm64-ios, arm64e-ios ] | |
clients: [ AppKit, DesignLibrary, PepperUICore, SwiftUI, SwiftUIBenchmarksCore, | |
SwiftUICatalogNoKit, SwiftUINoKit, SwiftUITestsAppNoKit, SwiftUITestsNoKit, |
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
_UIActiveViewServiceSessionDidChangeNotification | |
_UIAlertDidDisappearNotification | |
_UIAlertWillAppearNotification | |
_UIAppActiveInterfaceOrientationDidChangeNotification | |
_UIAppearanceInvocationsDidChangeNotification | |
_UIApplicationCameraShutterButtonDownNotification | |
_UIApplicationCameraShutterButtonUpNotification | |
_UIApplicationDidBeginIgnoringInteractionEventsNotification | |
_UIApplicationDidEndIgnoringInteractionEventsNotification | |
_UIApplicationDidEndSnapshotSessionNotification |
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
_kCAFilterMultiplyColor | |
_kCAFilterColorAdd | |
_kCAFilterColorSubtract | |
_kCAFilterColorMonochrome | |
_kCAFilterColorMatrix | |
_kCAFilterColorHueRotate | |
_kCAFilterColorSaturate | |
_kCAFilterColorBrightness | |
_kCAFilterColorContrast | |
_kCAFilterColorInvert |
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
/// Video demo: https://hachyderm.io/@samhenrigold/114359529882977822 | |
import UIKit | |
import PlaygroundSupport | |
final class DeleteDemoVC: UIViewController { | |
private let stack = UIStackView() | |
override func viewDidLoad() { | |
super.viewDidLoad() |
OlderNewer