Skip to content

Instantly share code, notes, and snippets.

@danielgalasko
danielgalasko / NSObject+Description.m
Last active August 30, 2016 07:58
Using dictionaryWithValuesForKeys to get a great object description
- (NSString *)description {
//We list the properties and their values using the ever convenient `dictionaryWithValuesForKeys`
//which will get the values of the corresponding properties
NSDictionary *debugProperties = [self dictionaryWithValuesForKeys:@[NSStringFromSelector(@selector(<#Insert property name#>))]];
return [NSString stringWithFormat:@"<%@: %p> %@", self.class, self, debugProperties];
}
@available(iOS 9.0, *)
extension TwitterFeedViewController: UIViewControllerPreviewingDelegate {
public func previewingContext(previewingContext: UIViewControllerPreviewing, viewControllerForLocation location: CGPoint) -> UIViewController? {
guard let indexPath = collectionView.indexPathForItemAtPoint(location),
cell = collectionView.cellForItemAtIndexPath(indexPath),
let tweet = viewModel.tweetAtIndexPath(indexPath) else { return nil }
//now we are ready to create our corresponding controller for the tweet
let tweetViewController = self.navigationCoordinationController.tweetControllerForTweet(tweet)
//I will expand on this in a bit but this lets us present controllers using peek and pop actions
tweetViewController.initiatingPreviewActionController = self
class TweetViewController: UIViewController {
var initiatingPreviewActionController: UIViewController?
override func previewActionItems() -> [UIPreviewActionItem] {
guard let initiatingPreviewActionController = initiatingPreviewActionController else {
assert(false, "Expected initiatingPreviewActionController to be set")
return []
}
return [UIPreviewAction(title: "Share", style: .Default,
handler: {[unowned self] (_, _) -> Void in
let shareSheet = self.createShareSheet()
extension MyViewController {
func registerForPeekAndPopWithCollectionView(collectionView: UICollectionView) {
guard #available(iOS 9.0, *) else { return }
if traitCollection.forceTouchCapability == .Available {
registerForPreviewingWithDelegate(self, sourceView: collectionView)
}
}
}
@danielgalasko
danielgalasko / VersionNumber.swift
Created May 20, 2016 12:26
A clean representation of a semantic version number in swift so you can compare version numbers as if they were numbers
/**
Represents a semantic version number in the form X.Y.Z
Its most useful feature is that it implements `Comparable`
making for easy comparison checks.
*/
struct VersionNumber {
let version: String
init(version: String) {
@danielgalasko
danielgalasko / RepeatingTimer.swift
Last active March 28, 2024 10:26
A repeating GCD timer that can run on a background queue
/// RepeatingTimer mimics the API of DispatchSourceTimer but in a way that prevents
/// crashes that occur from calling resume multiple times on a timer that is
/// already resumed (noted by https://github.com/SiftScience/sift-ios/issues/52
class RepeatingTimer {
let timeInterval: TimeInterval
init(timeInterval: TimeInterval) {
self.timeInterval = timeInterval
}