0
I使用AES算法對圖像進行加密。當我在IKImageBrowserView
中使用這些圖像時,它會正確顯示圖像,但我無法將圖像拖放到粘貼板。 我已經設置圖像表示對IKImageBrowserView
圖像對象這樣拖放不在IKImageBrowserView中工作
- (NSString *) imageRepresentationType
{
return IKImageBrowserNSDataRepresentationType;
}
- (id) imageRepresentation
{
return [[NSData dataWithContentsOfFile:path]decryptWithString:PASS];
}
但它的工作時,我給這樣的
- (NSString *) imageRepresentationType
{
return IKImageBrowserPathRepresentationType;
}
- (id) imageRepresentation
{
return path;
}
上面的代碼工作,因爲當我從IKImageBrowserView
拖動圖像將返回 圖像的路徑。
現在我需要做的是將IKImageBrowserView
中的加密圖像拖放到Pasteboard。