Karmeye

Results 22 comments of Karmeye

Is there support for different sizes of cellFrames? When I adjust the cellFrame according to the cell image size the spring board example stops working when moving cells.

In the future it would be gread to implement a recycling model for the background view. Now if there are several hundred items the scrolling becomes hacky, even more in...

Cool. I've added it to the gridView: In my ViewController viewDidLoad ``` javascript _gridView.backgroundView = [[UIView alloc] initWithFrame:CGRectZero]; [_gridView insertSubview:self.tilingBackgroundView belowSubview:_gridView.backgroundView]; ``` In AQGridView layoutSubviews ``` javascript self.backgroundView.frame = CGRectZero;...

Added a local variable to keep track of the contentOffset. Also added a public UIEdgeInsets property which top value I set to the same height as the gridViews header. ```...

I hid it only because I was lazy. But I do not think it's a performance penalty. It ought to be at least as slow as when all tiles are...

How come you call setNeedsLayout first in observeValueForKeyPath and not last? I call them last in each if case. Seems to work. Hmm, maybe it doesn't matter since setNeedsLayout is...

Thank you for making this and your quick response! Ah, good to hear that MarkdownConverter is pre-packaged with those. When I read the setting description > Enables the rendering of...

Once converted, how do you create a Markdown file from the result? I tried to go to edit then select all, but it's too much data for the clipboard on...

Ok, what happens is that the first time I tab out of the text box, `Text` (i.e. the binding) is `null` and this triggers `PropertyChanged`, as `null` and empty string...