yorkwang
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 /...
Meet the same problem.
Got it, the uri should be like this: String uri = "file://" + localImagePath;
+1
[self.fileManager fileExistsAtPath:[fileURL path]] isn't working on iOS 10 and 11 when app is opened
Just checked again, it happened after app is reinstalled.
I'm also having this issue occur too.
Anyone solve this issue?
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?