公告
财富商城
积分规则
提问
发文
2019-04-29 00:04发布
够拽才男人
Possible Duplicate: NSData to UIImage
How do I convert a NSData value to UIImage?
You can get UIImage from NSData as follows:
NSData *data = yourData; UIImage *image = [UIImage imageWithData:data];
or
NSData *data = yourData; UIImage *image = [[UIImage alloc] initWithData:data]; .... [image release];
最多设置5个标签!
You can get UIImage from NSData as follows:
or