ostatnicky

Results 12 comments of ostatnicky

I vote for this! :+1: :)

I simulated on my branch: https://github.com/ostatnicky/CustomCollectionViewLayout

I added ``` func reload() { itemAttributes = nil itemsSize = nil prepareLayout() } ``` into `CustomCollectionViewLayout` and call it after deleting section, but it's still crashing when I'm on...

Hey, I've niled at start of `prepareLayout` the `itemAttributes` and `itemsSize` and it works now. It is a little hot fix but it works. ``` override func prepareLayout() { itemAttributes...

Do you mean the difference of 10 sec? I don't know... I was getting 120 sec in repeating runs but after reboot I always got 130 sec.

I'm curious, try it after reboot too...

Funny, I tried it again and for first run I've got 130 sec. And on the second run 118 sec as you :D No sure what the problem :D Ok,...

I removed that because in my project it doesn't work. But I have there ViewDeck, maybe for MMDrawerController it will work. For demo it does.

To clarify at all: `self.navigationController.navigationBar.translucent = NO;` works only if you have top bar in side view controller. I don't have it there and view still jumps :(

Based on the following thread, it's not possible - https://github.com/firebase/extensions/issues/305 You have to write your own firebase function. You can be inspired by this extension - https://github.com/firebase/extensions/blob/master/delete-user-data/functions/src/index.ts Or in the...