Would like to know is there anyway that we could fix failing converting a string with space to NSURL in Mantle?
I'm getting below Mantle error:
Error Domain=MTLTransformerErrorHandlingErrorDomain Code=1 "Could not convert string to URL" UserInfo=0x7ff9e8de4090 {MTLTransformerErrorHandlingInputValueErrorKey=https://x.com/dev-pub-image-md/x-img/02020-x yy [email protected], NSLocalizedDescription=Could not convert string to URL, NSLocalizedFailureReason=Input URL string https://x.com/dev-pub-image-md/x-img/02020-x yy [email protected] was malformed}
Below the class files;
.h -
#import "Mantle.h"
@interface Place : MTLModel <MTLJSONSerializing>
@property (strong, nonatomic) NSString *placeId;
@property (strong, nonatomic) NSURL *logoURL;
@end
.m -
#import "Place.h"
@implementation Place
+ (NSDictionary *)JSONKeyPathsByPropertyKey {
return @{@"placeId": @"placeId",
@"logoURL":@"circleImage"
};
}
+ (NSValueTransformer *)logoURLJSONTransformer {
return [NSValueTransformer valueTransformerForName:MTLURLValueTransformerName];
}
@end
Thanks in advance!
This happens because your string is not URL endcoded (URLs cannot have spaces).
First - URL encode your string using the following method. Source : Stackoverflow
And then convert it to a URL.
In your specific scenario, you're working with Mantle JSON transformers. So what you can do is;