Matthew Palmer

Results 29 comments of Matthew Palmer
trafficstars

When you create the websocket streams with `client.websockets.userFutureData` and `client.websockets.userData`, the callback `subscribed_callback` (last parameter) is passed an `endpoint`. Pass this `endpoint` to `client.futuresTerminate` or `client.websockets.terminate` to terminate.

@kayvink definitely an interesting idea. @getaaron love the look of that API—that use of trailing closures is super nice 👍 Going off [the docs](https://developer.apple.com/library/ios/documentation/Security/Reference/keychainservices/#//apple_ref/c/func/SecItemCopyMatching) and [this StackOverflow post](http://stackoverflow.com/questions/10966969/enumerate-all-keychain-items-in-my-ios-application), I think...

Just updated the swift-2.3 branch, so try again (weren't any changes that should affect this that much though). Also maybe https://github.com/matthewpalmer/Locksmith/issues/147 will help?

Hi Thanks for using Locksmith! Re the first point, there's no way to pass in the accessibility options via those class methods. Your best option is to wrap a class...

Hmm strange. Which version of Locksmith and iOS? Also if you can reliably reproduce a sample project would be super helpful. Thanks! > On 13 Apr 2016, at 12:27 AM,...

A quick code dump that might be helpful—I was exploring a couple of different approaches that make sense in a documentation sense. ``` swift import UIKit import Locksmith enum SoundCloudAccountError:...

Was exploring the idea of using a factory to create the objects. The main problem with using a static func is that it'd be really hard to test, and it'd...

Just dumping out some thoughts here... The main concerns in developing this are: - we need to be able to access the `service`, `account`, etc. etc. of an already existing...

I quite like @stepanhruda's solution (more than any I've come up with), but I don't think we can introduce it at the library level. As mentioned, it'd be great to...

Have been playing with something like this (which works but is still very experimental) ``` swift // In Locksmith.swift public protocol ReadableSecureStorable_2: SecureStorable { static var service: String { get...