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
// | |
// FirebaseType.swift | |
// | |
import Foundation | |
import Firebase | |
protocol FirebaseType { | |
// properties |
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
// | |
// Stack.swift | |
// | |
import Foundation | |
import CoreData | |
class Stack { | |
static let sharedStack = Stack() |
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
extension NSDate | |
{ | |
func isGreaterThanDate(dateToCompare : NSDate) -> Bool | |
{ | |
//Declare Variables | |
var isGreater = false | |
//Compare Values | |
if self.compare(dateToCompare) == NSComparisonResult.OrderedDescending | |
{ |
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
// | |
// SSInAppPurchaseController.h | |
// SimpleStore | |
// | |
// Created by Joshua Howland on 7/2/14. | |
// Copyright (c) 2014 DevMountain. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
#import <StoreKit/StoreKit.h> |
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
// | |
// ViewController.m | |
// UIColorCategory | |
// | |
// Created by Caleb Hicks on 2/21/15. | |
// Copyright (c) 2015 DevMountain. All rights reserved. | |
// | |
#import "ViewController.h" |
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
// | |
// POTimer.h | |
// Wired In | |
// | |
// Created by Caleb Hicks on 6/23/14. | |
// Copyright (c) 2014 Caleb Hicks. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
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
// | |
// Settings.m | |
// Sample | |
// | |
// Created by Caleb Hicks on 7/2/14. | |
// Copyright (c) 2014 Caleb Hicks. All rights reserved. | |
// | |
#import "Settings.h" |
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
// goes above interface and implementation | |
typedef NS_ENUM(NSInteger, ActionSheetButton){ | |
ActionSheetFromLibrary, | |
ActionSheetTakePicture | |
}; | |
#import <MobileCoreServices/MobileCoreServices.h> | |
// methods |
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
// | |
// WIAccountTableViewController.m | |
// Wired In | |
// | |
// Created by Caleb Hicks on 7/17/14. | |
// Copyright (c) 2014 We Are Wired In. All rights reserved. | |
// | |
#import "WIAccountTableViewController.h" | |
#import <Parse/Parse.h> |
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
// | |
// NTOnboardController.m | |
// | |
// Created by Caleb Hicks on 7/10/14. | |
// | |
// Readme: Subscribe to the notification for onboardedKey where you want to run something for onboarding. | |
// In your App Delegate or initial view controller, insantiate NTOnboardController and call -checkOnboarded. | |
// NTOnboardController will send the onboardedKey notification if the user has not been onboarded. | |
// | |
// Enjoy! Comment or @calebhicks with questions. |
NewerOlder