How do I save an .m4a from web and copy to clipboard?

99封情书 提交于 2020-01-07 04:52:08

问题


I am downloading a .m4a from a url on an iOS device then copying to clipboard. So far, this is what I have:

NSArray *preview = [JSON valueForKey:@"results.previewUrl"];
NSURL *previewUrl = [NSURL URLWithString:[preview objectAtIndex:0]];
NSData *previewData = [NSData dataWithContentsOfURL:previewUrl];

How do I copy that .m4a to clipboard? I believe there is a way to copy .mp3s and .mp4s (.m4a is same as .mp4). results.previewUrl is http://a281.phobos.apple.com/us/r1000/119/Music/v4/f1/7b/d6/f17bd6e3-55c0-b7e0-9863-bc522900e950/mzaf_5153970109972844579.aac.m4a


回答1:


I believe what you are interested in is UIPasteBoard. It seems to fit your needs. Check this gist for some examples



来源:https://stackoverflow.com/questions/26826688/how-do-i-save-an-m4a-from-web-and-copy-to-clipboard

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!