yorkwang

Results 10 comments of yorkwang

In GestureImageView, protected void computeStartingScale(int imageWidth, int imageHeight, int measuredWidth, int measuredHeight) { switch (getScaleType()) { case CENTER: startingScale = 1.0f; break; ``` case CENTER_CROP: startingScale = Math.max((float) measuredHeight /...

Got it, the uri should be like this: String uri = "file://" + localImagePath;

I'm also having this issue occur too.

My app only save data into iCloud once when it's opened, and it's all right on iOS 9 and before, since iOS 10, the crash logs appeared. And I found...

It has no crash report backtraces. I have released several builds on TestFlight for users, all other crashes have crash reports except this one. And putting those codes into @try...

Meet the same issue, any update?