Mihai Fratu
Mihai Fratu
I see these weird warnings with the latest Facebook SDK as well: ``` warning build: /Users/josuebrizuelaxp/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/280UA0BYZPSX5/FBSDKCoreKit-HOIJV3VWWCK0.pcm: No such file or directory warning build: /Users/josuebrizuelaxp/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/280UA0BYZPSX5/Foundation-3DFYNEBRQSXST.pcm: No such file or directory warning...
It's been almost 6 years now. Is this a thing now or still not possible to document a `multipart/form-data` request?
Same here... Again :)
Hi! Any news about this? :-/
+1 for this :D
Have you guys managed to fix these warnings? I have a similar problem
Hm... I've tried this but for some reason the compiler chooses the `T` overload instead of `T?` for my `T!` arguments :( This breaks things for me :(
To be more explicit if I have these methods: ``` func T { } func T? { } func T! { } ``` Removing `func T! { }` seems to...
Yes, I have the latest Xcode version. And I’ve been looking all over the swift docs to find an explanation of this new warning that’s being triggered in Swift 4.1...
Ok, I found a quick fix. It seems that adding these lines: ``` for (UIView *view in self.subviews) { [self.mutableArrangedSubviews addObject:view]; } ``` in `initWithCoder:` will fix my issue. So...