Skip to content

Instantly share code, notes, and snippets.

@danielgalasko
danielgalasko / Dispatch_After.swift
Last active June 14, 2017 07:06
dispatch_after in Swift - A top level function for delaying code execution
func delay(delay:Double, closure:()->()) {
dispatch_after(
dispatch_time(
DISPATCH_TIME_NOW,
Int64(delay * Double(NSEC_PER_SEC))
),
dispatch_get_main_queue(), closure)
}
@danielgalasko
danielgalasko / AppInfo.swift
Last active February 16, 2016 07:48
Retrieve an iOS App version and build number
struct AppInfo {
static func buildNumber() -> String {
return AppInfo.infoDictionary["CFBundleVersion"] as! String
}
static func versionNumber() -> String {
return AppInfo.infoDictionary["CFBundleShortVersionString"]as! String
}
private static var infoDictionary: [NSObject: AnyObject] {
@danielgalasko
danielgalasko / UIView+HorizontalSizeClassInfo.swift
Last active August 29, 2015 14:15
Detect if a UIView has a Regular Width (Supports iOS 7). Sometimes its useful to run certain code depending on whether the device has a regular width.
extension UIView {
/// Returns a boolean indicating whether the view's width is currently in regular mode
/// On iOS 7 this will return true when the device is an iPad and false on iPhone
func isHorizontalSizeClassRegularWidth () -> Bool{
if self.respondsToSelector("traitCollection") {
return self.traitCollection.horizontalSizeClass == UIUserInterfaceSizeClass.Regular
} else {
return UIDevice.currentDevice().userInterfaceIdiom == UIUserInterfaceIdiom.Pad
}
}
@danielgalasko
danielgalasko / UIView+AutoLayout.swift
Last active March 24, 2021 15:47
A UIView extension for common auto layout constraints
extension UIView {
func addConstaintsToPinHorizontalEdgesToSuperView(padding: CGFloat = 0) {
prepareForConstraints()
self.superview!.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("H:|-(padding)-[view]-(padding)-|",
options: NSLayoutFormatOptions(0),
metrics: ["padding":padding],
views: ["view":self]))
}
func addConstaintsToPinVerticalEdgesToSuperView(padding: CGFloat = 0) {
@danielgalasko
danielgalasko / CollectionViewFetchedResultsControllerDelegateCompanion.swift
Last active August 29, 2015 14:15
A UICollectionView + NSFetchedResultsControllerDelegate companion designed to assist with managing inserts, updates, moves and deletions into a UICollectionView. Simply instantiate the companion with a fetchedResultsController, supply it with a delegate, and once the delegate calls the `collectionViewFetchedResultsControllerDelegateCompanionDidF…
/// Manages all the updates, inserts and deletes nicely so that you can worry about only the animation
/// @note Doesnt work with section changes as of yet
class CollectionViewFetchedResultsControllerDelegateCompanion: NSObject,NSFetchedResultsControllerDelegate {
var delegate: CollectionViewFetchedResultsControllerDelegateCompanionDelegate
private var changesKeyedByType:[NSFetchedResultsChangeType:[NSIndexPath]] = [:]
init(fetchedResultsController: NSFetchedResultsController,delegate: CollectionViewFetchedResultsControllerDelegateCompanionDelegate) {
self.delegate = delegate
super.init()
@danielgalasko
danielgalasko / SwiftSingleton
Last active August 29, 2015 14:09
A swift singleton initialiser that also allows for configuration of the singleton when it is first created.
class var sharedInstance {
struct Static {
static let instance : SingletonObject = SingletonObject()
static var onceToken : dispatch_once_t = 0
}
dispatch_once(&Static.onceToken) {
//perform configuration here
}
return Static.instance
}