Home | 简体中文 | 繁体中文 | 杂文 | 打赏(Donations) | 云栖社区 | OSChina 博客 | Facebook | Linkedin | 知乎专栏 | Github | Search | About

第 2 章 NSData

目录

2.1. dataWithContentsOfURL
2.2. dataWithContentsOfFile

2.1. dataWithContentsOfURL

		
	NSURL *fileUrl = [[NSBundle mainBundle] URLForResource:@"test" withExtension:@"png"];
	NSData *imageData = [NSData dataWithContentsOfURL:fileUrl];