Luke Scott

Results 89 comments of Luke Scott

I'm not sure if this works in every browser, but so far it does in Chrome: ``` javascript new Date("2014-12-31 GMT-0600") new Date("2015 GMT-0600") ``` This works with most dates....

Anyone here interested in maintaining this? I just need someone to accept PR's that fix issues without changing too much. At the moment I don't have time to do so....

This is definitely a retain cycle. @Morkrom It looks like you were on the right track. In theory the helper should be collected along with the collection view given the...

Probably the best solution is to throw out the category in favor of a subclass. I actually did that in the experimental branch, but it's vastly different than what's on...

The version on the master branch basically exchanges places and doesn't update the size. That's why you see this behavior. It has to do with how it exchanges, and that...

The didMoveItemAtIndexPath feature was added by @ndlupine. Looking at it, it may be because didMoveItemAtIndexPath is called inside the completion handler of performBatchUpdates. That code probably should be inside the...

- What is `_observerForUIKeyboard*` for? You don't seem to do anything with these. - You can avoid the weakSelf stuff if you add a method to the class. - The...

I've actually never used `addObserverForName:object:queue:usingBlock:`. Didn't realize that it returned the observer. I prefer `addObserver:selector:name:object:` because you can simply do `removeObserver:self` to remove all observers in one call. It ensures...

Sorry it's taken me so long. Will be getting to this soon!

Hi faesa, It's hard to know what is wrong without debugging it. For the slowness, If I had to guess it probably has something to do with recalculating the layout...