This file contains 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
// KeychainQuery is OS X only. | |
#if os(OSX) | |
/// Custom SSKeychainQuery subclass that supports keychain sharing on OS X. | |
/// based on https://developer.apple.com/library/mac/documentation/Security/Conceptual/keychainServConcepts/03tasks/tasks.html#//apple_ref/doc/uid/TP30000897-CH205-BBCHEABI (Listing 3-2) | |
private class KeychainQuery: SSKeychainQuery { | |
/// Specify app paths to share keychain with. | |
/// No need to pass current app's path (which calls the code). | |
var sharedAppPaths: [String]? |
This file contains 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
// | |
// UIView+Debug.m | |
// Symbols | |
// | |
// Created by Khanov on 16/03/14. | |
// Copyright (c) 2014 Khanov. All rights reserved. | |
// | |
#import "UIView+Debug.h" |