ローカルに保存された画像の URL を取得していますが、それを文字列に変換しようとしています。absoluteString
URLを文字列に変換する方法は 知っていますが、この場合は機能しません。
私のURLはこのようなものです(file://localhost/Users.......)
NSString * imagestring = [entryObject.imageurl absoluteString];
しかし、そのスローエラー unrecognized selector sent to instance 0xc36c410
。なぜこのようなことが起こるのかわかりません
ここに私のオブジェクトクラスがあります
@interface EntryObject : NSObject
@property (nonatomic, strong) NSString *descString;
@property (nonatomic, strong) UIImage *photoImage;
@property (nonatomic, strong) NSURL * imageurl;
@property (nonatomic, strong) NSString *dairyId;
@property (nonatomic, strong) NSString *eventId;
@property (nonatomic, strong) NSString *dateString;
@property (nonatomic, strong) NSString *monthwiseSeparate_String;
@property (nonatomic,strong) NSString *sortedString;
@property (nonatomic,strong) NSData * entryimagedata;