The easiest way to write NSData to a file

前端 未结 4 436
悲哀的现实
悲哀的现实 2020-12-05 01:36
NSData *data;
data = [self fillInSomeStrangeBytes];

My question is now how I can write this data on the easiest way to an file.

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-05 02:04

    writeToURL:atomically: or writeToFile:atomically: if you have a filename instead of a URL.

提交回复
热议问题