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
// | |
// CaptuvoManager.swift | |
// | |
import Foundation | |
class CaptuvoManager: NSObject, CaptuvoEventsProtocol { | |
static let sharedManager = CaptuvoManager() | |
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.swift | |
// AssetSyncTest | |
// | |
// Created by Paul Wilkinson on 12/4/17. | |
// Copyright © 2017 Paul Wilkinson. All rights reserved. | |
// | |
import UIKit | |
import CloudKit |
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.swift | |
// AssetSyncTest | |
// | |
// Created by Paul Wilkinson on 12/4/17. | |
// Copyright © 2017 Paul Wilkinson. All rights reserved. | |
// | |
import UIKit | |
import CloudKit |
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 | |
// ArrayCrash | |
// | |
// Created by Paul Wilkinson on 24/5/17. | |
// Copyright © 2017 Paul Wilkinson. 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
// | |
// FirstViewController.swift | |
// AnotherBT | |
// | |
// Created by Paul Wilkinson on 15/7/17. | |
// Copyright © 2017 Paul Wilkinson. All rights reserved. | |
// | |
import UIKit | |
import CoreBluetooth |
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
// | |
// main.swift | |
// SearchTest | |
// | |
// Created by Paul Wilkinson on 22/8/17. | |
// Copyright © 2017 Paul Wilkinson. All rights reserved. | |
// | |
import Foundation |
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
// | |
// PhoneCallObserver.swift | |
// | |
// Created by Paul Wilkinson on 27/9/17. | |
// Copyright © 2017 Paul Wilkinson. All rights reserved. | |
// | |
import UIKit | |
import CallKit |
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
// | |
// GroupClassModel.h | |
// GCM | |
// | |
// Created by Paul Wilkinson on 13/10/17. | |
#import <Foundation/Foundation.h> | |
@interface GroupClassModel: NSObject | |
@property (strong, nonatomic) NSString *id; |
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
// | |
// CircularTimerView.swift | |
// ProgressView | |
// | |
// Created by Paul Wilkinson on 26/11/17. | |
// Copyright © 2017 Paul Wilkinson. All rights reserved. | |
// | |
import UIKit |
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 Dictionary where Key == String { | |
func isNullOrEmpty(key: String) -> Bool { | |
guard let value = self[key] else { | |
return true | |
} | |
if value as? NSNull == NSNull() { | |
return true |