我对Objective C非常陌生,我已经在Google上搜索了几个小时试图找到解决方案。
我有一个 NSString 看起来像
273350/364D4D002A00041EB8F1E0CEF1E0CCF1E0CCF1E0CCF1E0CCF etc etc
它指的是 TIFF 图像(我猜是某种 RAW 字符串格式),我想用数据填充 NSImageView。
这是我到目前为止所尝试的:
NSData *picdata = [NSData dataWithBytes:[albumArtStr UTF8String] length:[albumArtStr length]];
NSImage *myPicture = [[NSImage alloc] initWithData:picdata];
[_albumArtCell setImage:myPicture];
其中“albumArtCell”是 NSImageView