Jordan Morgan

Results 8 issues of Jordan Morgan

In iOS 14, using [pull down menus](https://developer.apple.com/design/human-interface-guidelines/ios/controls/pull-down-menus/) is a core UX component that largely replaces action sheets. To help facilitate this, `UIAction` replaces a lot of what previously was the...

question

Take this simple JSON response: { "success": true|false, "error": { "message": "string", "code": "string", "details": { "error": "string" } } } As it stands now with Plank, you can define...

The Ruby script appears to populate `_data` with the parsed documentation that it finds - is there a specific reason why that's included in the `.gitignore` file? For me at...

We are using Typewriter for Objective-C, which as I understand it - requires ~Typerwriter 7.x. In the docs [here](https://segment.com/docs/protocols/apis-and-extensions/typewriter/), it mentions that... > If you use a statically typed language...

The new [ArgumentParser project](https://swift.org/blog/argument-parser/) is the modern solution for parsing command line arguments, the current framework used in this project has been deprecated.

enhancement

Figure out a way to distribute it as a true CLI tool so that it's installed on machines locally. That way, you could just navigate to the project and run...

enhancement

Noticed an error being throw when running `pod install`, seems to be trying to call `join` on a nil string: ``` TypeError - no implicit conversion of nil into String...