Mark Turner
Mark Turner
Perhaps I can update to use constraints?
Rather than creating a timer for rendering (or using `GLKViewController` timer) what if the `CMMotionManager` update triggered the next render loop?
We're using the attached plugin which enables us to generate Sourcery output using Xcode plugin: Our previous output was defined as follows: ```yaml output: ./ArchitectureExampleTests/Mock.generated.swift ``` Though it seems that...
You might remember the repo I created last year: https://github.com/markst/hotreloading-vscode-ios https://github.com/yonaskolb/XcodeGen/pull/1218 I had conceived the idea of creating an extension which would enable creating the `project.yml` and generating the `xcodeproj`...
I am working on a project where I need to generate Swift Codable structures from a JSON Schema, and I'm interested in customizing the generated Swift Enum CodingKey raw values....
Appears the `UIScrollView.reachedBottomPublisher` offset is not working as expected. Currently the `threshold` is calculated by using max bracketing on offset of calculating the y to compare using visible height: ```swift...
As defined by Apple documentation, push notifications can contain custom data in the payload: https://developer.apple.com/library/content/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/CreatingtheNotificationPayload.html#//apple_ref/doc/uid/TP40008194-CH10-SW1 Since PushNotificationHandler only passes `aps` data to the subscribers, custom data cannot be accessed. https://github.com/gtsifrikas/PushNotificationHandler/blob/master/PushNotificationHandler/PushNotificationHandler.swift#L84