Skip to content

Instantly share code, notes, and snippets.

//
// MagicalRecordLogging.h
// MagicalRecord
//
// Created by Saul Mora on 10/4/13.
// Copyright (c) 2013 Magical Panda Software LLC. All rights reserved.
//
#import <MagicalRecord/MagicalRecord+Options.h>
@danielgalasko
danielgalasko / gist:aaf66d1cc11b8aa51f9a
Created June 26, 2015 07:23
Settings bundle acknowledgements for cocoapods (insert in podfile)
post_install do |installer|
require 'fileutils'
FileUtils.cp_r('Pods/Target Support Files/Pods/Pods-Acknowledgements.plist', 'Resources/Other-Sources/Settings.bundle/Acknowledgements.plist', :remove_destination => true)
end
@danielgalasko
danielgalasko / gist:445b6cfd90cfa56ce3a9
Created May 8, 2015 12:54
Generating IPA from .xcarchive
xcodebuild -exportArchive -archivePath $projectname.xcarchive -exportPath $projectname -exportFormat ipa -exportProvisioningProfile “Provisioning Profile Name”
@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 / 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
}