phoney

Results 24 comments of phoney

BTW, If I comment out the code in dismissPicker, after rotation the picker remains on screen but it looks like the screenshot in https://github.com/skywinder/ActionSheetPicker-3.0/issues/294

This is the fix if anyone cares: - (NSString*)colorAsString:(UIColor*)color { const CGFloat *componentsP = CGColorGetComponents(color.CGColor); NSInteger count = MIN(CGColorGetNumberOfComponents(color.CGColor), 4); CGFloat components[4] = { 0, 0, 0, 0 }; for...

I recommend that you don't do anything with the warnings about possible misuse etc. Those warnings should be fixed but the code appears to be valid. If you really want...

This all sounds great. I'm a swift user. Once there is a swifty API I won't have any interest in the clang imported Obj-C -> swift API. I don't see...

SPM was updated last year to support Resources in swift 5.3, Xcode 12. This page https://developer.apple.com/documentation/swift_packages/bundling_resources_with_a_swift_package says that setting the swift tools version to 5.3 should make resources "just work."...

I've made a PR with updated SPM support that includes copying the font files into your project. https://github.com/thii/FontAwesome.swift/pull/272 I invite anyone that wants to use SPM to try the PR...

Also these lines don't compile tapGesture = UITapGestureRecognizer(target: self, action: #selector(tapped)) panGesture = UIPanGestureRecognizer(target: self, action: #selector(pan)) The funcs 'tapped' and 'pan' require the @objc decoration.

This is fixed by Pull Request #48, which should be merged.

Thanks. I did look at it and gave it a +1 two weeks ago. Can it be merged?

This is fixed by Pull Request #48, which should be merged.