ObjectMapper-Plugin icon indicating copy to clipboard operation
ObjectMapper-Plugin copied to clipboard

a xcode plug-in for generating mapping

Results 9 ObjectMapper-Plugin issues
Sort by recently updated
recently updated
newest added

1. replace pod with SPM 2. adapt xcode13 3. fix compile error

Hi, Thanks for developing this plugin. I don't have a Mac developer a/c and I'm not able to build this project on my Xcode. How can I install this plugin...

How to find this plugin? ![screen shot 2018-10-17 at 13 08 09](https://user-images.githubusercontent.com/36351526/47063478-b6517680-d20d-11e8-856d-cbaecb0756b6.png) Fyi, it is working when xcode 9.

`import Cocoa import ObjectMapper class TestOb: NSObject , Mappable { var testVar:String? var testSS:Int? required init?(map: Map) { } func mapping(map: Map) { } } ` I run the plugin,...

According to the documentation: https://github.com/Hearst-DD/ObjectMapper#immutablemappable-protocol-beta The syntax should be `>>>` instead of `>> map["id"] name >>> map["name"] } ```

According to the documentation of the `ObjectMapper` (https://github.com/Hearst-DD/ObjectMapper), and my own findings, optional properties should be parsed from JSON -> Model with `try?` instead of just `try`, else the whole...