我正在獲取本地保存的圖像url,現在我試圖將其轉換爲字符串。我知道absoluteString
是將url轉換爲字符串的方法,但在這種情況下不起作用。將url轉換爲字符串
我的網址是這樣的(文件://本地主機/用戶.......)
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;
什麼情況?你知道這種方法只適用於'NSURL',沒有別的? – 2013-03-29 06:56:13
顯示entryObject的類 –
也許從NSLog開始(@「%@」,entryObject.imageurl);讓我們看看是什麼樣子。 – danh