我正试图从具有透明背景的URL那里获得图像。
但是,当我试图利用NSData时,我正相反地看到黑色背景。
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
NSData *imgageURL = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"Image URL"]];
UIImage *image = [UIImage imageWithData:imageURL];
[button setImage:image forState:UIControlStateNormal];
在这里,我有黑色背景,而不是透明。
我如何从URL获得透明的形象来工作?