Yannick Loriot
Yannick Loriot
Thank you, for the feedbacks. I'll try to do it the next week. I created the repo https://github.com/yannickl/YLFlowingMenu. If you have time you can contribute. ;)
Hi @otymartin, You can modify the `contentInsets` property to adjust the display area. By default it is sets to `.zero` so that's why the path can be near the border...
Hi, On which device have you test it? Note: you can check that the device supports the reader by calling the `[QRCodeReader isAvailable]` method.
Is the example project works fine or it crashes too? If you add the exception breakpoint to your project where the app crashes and with which metadataObjectTypes? The error may...
I don't see any problem to add it into the extension. ;)
I think it is always important to keep at least one example to understand the ARC concept. However I'm agree with you, it could be nice to clean the doc...
I don't know if I would support this syntax because If we start it requires to implements all the possible signature. May be the `Guarantee` would be better #30? ```swift...
@Qwerp-Derp I don't have time to implement something similar. But there is this alternative that is working: ```swift let p1 = myPromise1() let p2 = myPromise2() let p3 = myPromise3()...
Hi @igordeoliveirasa, How do you create your promise? Can you upload a sample project or gist file please?
Yes indeed, this is a bit annoying. For the moment the workaround is to use the `DispatchQueue.main.async` method.