-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
useEditedImage = true fails #82
Comments
Hi @masterwali could you please state the exact versions of ImageRow, Xcode and iOS? If somebody looks at this issue in the future, "latest" might not be very helpful. Also, your code seems to work in the examples project on Xcode 11.4 |
@mats-claassen |
I'm have this same problem. The editor does not appear after a photo is selected from the library. The editor does appear after a photo is taken with the camera. Xcode Version 11.4 (11E146) |
I have no iPhone to test it at the moment but it works fine for me in the Example project on a simulator. Does the console tell you something about it? |
Mathias,
No it doesn’t say anything or give any errors. It just returns me to the form. It was working once before without problem. I’m not sure with what update it stopped working (I don’t use that form very often).
I tried removing the imageRow pod and reinstalling it, I have not removed and reinstalled Eureka pod.
…-Rob
On Apr 2, 2020, at 3:25 PM, Mathias Claassen ***@***.***> wrote:
I have no iPhone to test it at the moment but it works fine for me in the Example project on a simulator. Does the console tell you something about it?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub <#82 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AHOQ3F2R2SRHMZCCITIYAXDRKTRELANCNFSM4LUVSPUQ>.
|
@robaac I tried all that. I asked the same question and to no avail. So I redesigned my solution to use the ViewRow pod from Eureka which allows me to insert anything. Here's my working solution, plus the code from here to use a regular image picker https://theswiftdev.com/picking-images-with-uiimagepickercontroller-in-swift-5/ `
|
this issue is related to this #83 (comment) However it seems that compiling using the iOS 14 SDK fixes the issue. |
When using the following attributes
<<< ImageRow() { row in
row.title = "Profile Photo"
row.sourceTypes = [.PhotoLibrary, .Camera, .SavedPhotosAlbum]
row.allowEditor = true
row.useEditedImage = true
row.tag = "profilePhoto"
row.cell.height = ({ return 200 })
row.add(rule: RuleRequired())
}
ImageRow: latest, Xcode: latest and iOS version: latest stable
After selecting a photo it does not load the photo editor and the photo does not load in the row. When I set useEditedImage = false then photo loads as expected.
The text was updated successfully, but these errors were encountered: