phoney

Results 24 comments of phoney

This assertion failure means that your cellForRowAtIndexPath method returned nil in ControllerA.

You can get callbacks for URLs with UITextView using a .link attribute. That's how I do this. Not sure why you would do this in a label.

Here's another example of code that isn't valid after correction: ``` public let dateInputValidator = Validator(rules: [ ValidationRule(userMessage: "Must be a valid date.") { input in return false }]) ```...

It would be best if this was correctable, similar to the trailing_whitespace rule. But it would probably have to know how many spaces equals a tab. I started work on...

I also ran into this problem. It appears that UIKit tries to remember if the keyboard is visible when a view controller is shown over another view controller and then...

Not sure if you're suggesting I use ILPDFKit or just borrow his code. While that lib is more full-featured than yours he has pull requests that are two years old...

I think that during the animation to expand/contract the sections are set to a height and width of zero. The only way I found to fix the warnings is to...

Also SnapKit is now at version 5.7.1 and pod outdated notes this. MarqueeLabel is now at 4.5.0. The following pod updates are available: - MarqueeLabel 4.3.2 -> 4.3.2 (latest version...

@Dreamer4ik I also have this problem and did use your solution. However you can simplify it like this: ``` navigationController?.pushViewController(vc, animated: true) { [weak self] in self?.navigationController?.dismiss(animated: true) } ```...

@Dreamer4ik I have another solution (or workaround). ``` private func show(_ vc: UIViewController) { UIView.animate(withDuration: 0.35) { self.navigationController?.pushViewController(vc, animated: true) } completion: { finished in self.navigationController?.dismiss(animated: true) } } ```...