- 1Blocker
- AirBuddy
- Amphetamine
- BlockBlock
- DaisyDisk
- Deliveries
- Fantastical
- HextEdit
This file contains 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
static UICollectionViewListCell *userCell(UICollectionView *collectionView, NSIndexPath *indexPath, NSArray<RTTweet *> *tweets) { | |
UICollectionViewListCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"UserCell" forIndexPath:indexPath]; | |
UIListContentConfiguration *contentConfiguration = [UIListContentConfiguration valueCellConfiguration]; | |
contentConfiguration.image = nil; | |
RTTweet *tweet = tweets[indexPath.row]; | |
contentConfiguration.text = tweet.user.username; | |
contentConfiguration.secondaryText = [tweet.user.followers az_formattedStringForCount]; |
This file contains 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
Before November 6: | |
"Resolves an issue that affected app compatibility with iOS 9.0, 9.1 and 9.2. Apps containing asset catalogs built with Xcode 10 whose deployment target was set to iOS 9.0, 9.1 or 9.2 would produce content incompatible with the runtimes of those iOS versions. Rebuilding the application with Xcode 10.1 resolves this issue. (44535967)" | |
After November 6: | |
"Known Issues | |
Apps that contain asset catalogs built using Xcode 10 or later with a deployment target set to iOS 9.0, 9.1 or 9.2 produce content incompatible with the runtimes of those iOS versions. (44535967, 45723580, 45723189)" |
This file contains 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
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | |
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; |
This file contains 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
struct MockGenType { | |
let name: String | |
let isOptional: Bool | |
init(name: String, isOptional: Bool = false) { | |
self.name = name | |
self.isOptional = isOptional | |
} | |
func libRepresentation(hasDefault: Bool = false) -> OptionalTypeSyntax { |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>IDEDidComputeMac32BitWarning</key> | |
<true/> | |
</dict> | |
</plist> |
This file contains 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
$ sudo rm -rf ~/Library/Caches/com.apple.dt.Xcode \ | |
rm -rf ~/Library/Developer/Xcode/DerivedData \ | |
sudo rm -rf "$(getconf DARWIN_USER_CACHE_DIR)org.llvm.clang.$USER/ModuleCache" \ | |
sudo /usr/libexec/xpccachectl |
This file contains 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
// | |
// SwiftVersionSourceEditorCommand.swift | |
// WrapperExtension | |
// | |
// Created by Alan Zeino on 7/25/17. | |
// Copyright © 2017 Alan Zeino. All rights reserved. | |
// | |
import Foundation | |
import XcodeKit |
This file contains 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
// | |
// OurCache.swift | |
// ConflictingSymbolsViaProtocolExtensions | |
// | |
// Created by Alan Zeino on 7/19/17. | |
// Copyright © 2017 Alan Zeino. All rights reserved. | |
// | |
import Foundation |
This file contains 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
CollectionView.swift:111:24: error: method does not override any method from its superclass | |
open override func performBatchUpdates(_ updates: (() -> Void)?, completion: ((Bool) -> Void)? = nil) { | |
^ | |
UIKit.UICollectionView:122:15: note: potential overridden instance method 'performBatchUpdates(_:completion:)' here | |
open func performBatchUpdates(_ updates: (() -> Swift.Void)?, completion: ((Bool) -> Swift.Void)? = nil) |
NewerOlder