fabb

Results 140 comments of fabb

Found a weird type issue with nesting `styled()` components: https://github.com/styled-components/styled-components/issues/4174

Same here with 2.5.2 on iOS 9.1. Seems to have to do with the use of Size Classes in this storyboard. When I deactivate that checkbox, it does not crash...

I install it via cocoapods. I guess it has something to do with my deployment target being iOS 7.1 which somehow does not support the necessary features of size classes....

Maybe due to deployment target 7, the storyboard is being compiled differently, as iOS 7 only supports a subset of size classes? The issue happens for me on iOS 9.1...

The `import {}` works, but when using a template function in the template string which accesses the theme, typescript complains that the `props` parameter implicitly has `any` type: ``` props.theme.c.primary};`}/>...

ah ok, just use "css``": ``` props.theme.c.primary};`}/> ```

Thanks for helping! Xcode has this "Generated Interface" view: https://developer.apple.com/library/ios/qa/qa1914/_index.html It also works for ObjC header files. Unfortunately it seems to ignore #imports which would be necessary for me. So...

Ok, I managed to create a command line application Xcode project, which can use SourceKittenFramework. Wasn't so easy, as command line application cannot use dynamic frameworks as I learned :-)...

Are your public headers importing private headers? If yes: you should avoid that and put private imports into the class files. Besides that you also should not import private headers...