gerchicov-bp

Results 31 comments of gerchicov-bp

dispatch_async(get_main_queue()...

Do you have concrete simple steps to reproduce/simulate this bug?

It seems you just call the following in the incorrect order: ``` UIGraphicsGetImageFromCurrentImageContext UIGraphicsEndImageContext UIGraphicsBeginImageContextWithOptions ``` But "begin image context" should be before other calls. The order is broken because...

It seems that it can be solved by something like this: `cell.contentView.heightAnchor.constraint(equalToConstant: 112).isActive = true` But I could solve it by inheriting and overriding table delegate methods inside `ExpandableTable` but...

@hemaks777 maybe is it not called because `MapViewPlus` implements this method by itself and call anything else. The only solution is to make your own class inherited from `MapViewPlus` and...

I need the same feature

@jonathanvoelkle I understand how package.json scripts are declared but I need the other thing. This feature with scripts is so cool by itself so I suggest to separate it from...

Hello I read this thread but still can't understand how to work with this library. For example we have a standard Wordpress blog: http://gargo.of.by/ How to get an array of...

@lovesunstar It seems to be better than my code: ``` if let index = (parameters["id"] as? Int) ?? Int(parameters["id"] as! String) { ... } ``` Anyways I send a string...