Closed srameshr closed 6 years ago
@npomfret Could you look into this?
Will do, don't think it's a difficult fix but am struggling for time at the moment.
@npomfret Thank you! This and accepting array of tools would really help!
@npomfret Any updates on this?
@npomfret If its a simple fix can you please look into this. I went over iOS code, but I am not able to figure it out. I have never used objective-c
Anybody able to fix this damn thing?
I fixed it with the help of an iOS dev friend. This occurs on iOS 9.0 because of this line
NSISO8601DateFormatter *dateFormatter = [[NSISO8601DateFormatter alloc] init];
This formatter is iOS 10+ only.
Replaced it with:
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
formatter.dateFormat = @"h:mm a, d MMM";
NSString *timestamp = [formatter stringFromDate:creationDate];
You have to link CameraRoll (RN's library) to your iOS project. See this SO link for instructions.
This is a better one https://github.com/prscX/react-native-photo-editor/issues/1
@srameshr thanks for the link - hope this is of use to people.
@npomfret Could you put it in your readme file?
The plugin works fine if I provide,
http
orfile://
uri.