Leo Schweizer
Leo Schweizer
Addendum: I'm using the latest version available through CocoaPods (1.4.1).
That fixes the pull-to-refresh gesture. Oddly enough, the manual invocation of `beginRefreshing` still seems to be broken, but that would be acceptable given that the gesture is usable. However, the...
Actually, the desired sticky behaviour can be achieved as follows: ``` - (void) scrollViewDidScroll:(UIScrollView *)scrollView { UIView *v = [scrollView emptyDataSetView]; v.frame = CGRectMake(v.frame.origin.x, scrollView.contentOffset.y, v.frame.size.width, v.frame.size.height); } ``` Which...
Unfortunately release 1.5 has broken my nice workaround, now there is a nasty glitch where the empty dataset view moves down a view pixels and immediately in the correct position...
@allaire No, I figured that simply using the background view of a `UITableView` is a much more reliable solution for my use case than working around the design of this...
Thanks for the hint, I'll take a look!
> I have FTGShorthand that is inspired by Magical Record shorthand syntax. Thanks, I'll take a look at that too. On first glimpse it looks like you are figuring that...
> You may already know this, there's ObjectiveSugar that is used heavily by me, which implements lots of cool methods inspired by Ruby Yes, I used it as well in...
@SunilSpaceo I think you might have reported this issue in the wrong project? At least I can't see how this is related to OpinionatedC ;)
@SunilSpaceo well I still can't help you given the information you provided. It would be important to know how `select:` is called and what is passed as `selectBlock`. Most likely...