Eric Marchand

Results 122 comments of Eric Marchand

The warning is not the same ``` Initializer 'init(stringInterpolation:)' nearly matches defaulted requirement 'init(stringInterpolation:)' of protocol 'ExpressibleByStringInterpolation' ``` https://nshipster.com/expressiblebystringinterpolation/ maybe something like that ```swift extension Path: ExpressibleByStringInterpolation { public init(stringInterpolation:...

because I reproduce with some request log activated (and some edit to not showing private data) ```php polling error - Error 400 No registered event listener (UNSPECIFIED_ERROR) [9/1/2022, 2:31:30 PM]...

`TargetRuntime` created, decode it instead of reading simple file Create an `OS` enum also because specific iPad storyboard could have similar feature than ios or universal one --- To allow...

@kateinoigakukun just to notice for iblinter because I decode TargetRuntime for watchKit you will receive a `XMLDeserializationError.implementationIsMissing("watchKit")` ps: I will make also some error thrown with good info when xml...

Maybe there is a bug but there is already `CollectionViewContentView ` https://github.com/IBDecodable/IBDecodable/blob/master/Sources/Models/Views/ScrollViews/CollectionView.swift#L133 So the issue is for old storyboards?

maybe switch case here https://github.com/IBDecodable/IBDecodable/blob/2101abd094da0592629b22e4d0ace7e9a19ceab0/Sources/Models/Views/AnyView.swift#L55 is not complete and the commit https://github.com/IBDecodable/IBDecodable/commit/946748e3b74b6323206063632e3a0e6df6a4a285#diff-a5cc891fa243514deb3be32a801d084a there is a unit test...

yep it could help to not try two times but this information is not accessible I think into `func decode(_ xml: XMLIndexerType) throws -> XXX` my current code ```swift contentView:...

For boolean properties I make some dirty code to have `true`as default value ```swift clearsSelectionOnViewWillAppear: (try? xml.attributeValue(of: "clearsSelectionOnViewWillAppear")) ?? true ``` I think this issue could be moved to IBDecodable...

_From @SD10 on April 9, 2018 16:13_ Yeah @phimage I wanted your advice on this one. I think making everything optional is the way to go. Let me know what...