jakehao

Results 10 comments of jakehao

I agree that this name is misleading. Something like "Find class files that never gets imported" may make more sense.

I have come across this issue as well, but it turns out be a stupid mistake. I have used a wrong class for my scrollView. There are a few available...

Thanks for the suggestion. I believe my first iteration tried this but I later regreted it. Reasons: 1. FormDataSource works with UITableView most of the time but it should not...

Looked at the code, I think I was wrong. Because baseRow must contains a UITableViewCell, there is no reason for the user to use this library in other views than...

One more thought. When using ObjectForm, I have come into some scenarios where form rows are not the only rows in my UITableView. For example, I have other dataSource and...

Awesome, SPM is supported!

3 WWDC sessions: What's new in swift generics Embrace Swift Generics Design protocol interfaces in Swift: type eraser, type relationships

same problem here. And only happens on iOS 7. To fix this, in SwipeView.m add [self layoutIfNeeded] for layoutSubviews routine like below: ``` - (void)layoutSubviews { [super layoutSubviews]; [self updateItemSizeAndCount];...

I have update the pull request to remove [self layoutIfNeeded], which will sometimes cause infinite loop. Instead put [super layoutSubviews] in the end of -layoutSubviews will fix the “Auto Layout...