Stefan Walkner

Results 28 issues of Stefan Walkner

I do get some crash reports from Fabric like this: ![fxblurview](https://cloud.githubusercontent.com/assets/183958/11819479/520cb178-a360-11e5-8471-14d0dc38960f.png)

![image](https://cloud.githubusercontent.com/assets/183958/23740424/c2eb9b98-04a3-11e7-9f02-ba0c3220a7cf.png) anyone else experiencing this issue? It worked fine under iOS 9, but after upgrading to iOS 10 I get the black area in the upper half of the screen...

is it possible to "feed" this wrapper with live data from AVCaptureSession?

With the following view ``` public struct ContentView: View { let inspection = Inspection() @State var selectedTab = 1 public var body: some View { TabView(selection: $selectedTab) { Button(action: {...

help wanted

is it possible to generate a graph with both, Swift and Objective-C?

I would like to let the user decide which peripheral to connect to, how can I discover services and characteristics then?

Is there a delegate method that handles this case?

I would like to test my view on both, an iPad and iPhone. Let's assume a very simple view: ``` struct SimpleView: View { var body: some View { if...

why is the success-Type be an optional? ``` let request = API.GetXY.Request(...) currentRequest = apiClient.makeRequest(request, behaviours: [], completionQueue: DispatchQueue.main) { result in switch result.result { case let .success(value): let xy...

i.e. how can I mock the requests/APIClient?