之前一直用MPMoviePlayerViewController进行网络播放,最近下载文件然后本地播放,发现怎么播放都是黑屏.后来发现MPMoviePlayerViewController的本地URL不能使用[NSURL urlStringFrom]这个方法.下面贴下正确代码 NSString *p...
分类:
其他好文 时间:
2015-03-13 09:18:53
阅读次数:
133
// 1. 导向下载// NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"要下载的应用在appstore上的网址"]];// [[UIApplication sharedApplication] openURL:url];...
分类:
其他好文 时间:
2015-03-12 20:35:32
阅读次数:
114
//AFN函数 — imageview加载网络图片并且获取图片,获取之后存储到手机
[image
setImageWithURLRequest:[NSURLRequest
requestWithURL:[NSURL
URLWithString:[NSString
stringWithFormat:@"%@",skin.bigImg]]
] placeholderImage:ni...
分类:
其他好文 时间:
2015-03-12 17:10:12
阅读次数:
129
#pragma mark - 加载播放数据- (void)loadData:(NSString *)musicUrl{ NSURL *playURL = [NSURL URLWithString:musicUrl]; self.playerItem = [AVPlayerItem playerI.....
分类:
移动开发 时间:
2015-03-10 11:46:14
阅读次数:
186
//定义一个方法来获取网络数据,接受参数为网址
func onSearch(url:
String){
//定义一个NSURL
var nsUrl:
NSURL = NSURL(string: url)!
//定义一个NSURLRequest
var request:
NSURLReq...
分类:
Web程序 时间:
2015-03-08 18:55:46
阅读次数:
122
提供一种获取iOS文件夹大小的方法。没有使用对文件夹内的文件枚举与文件大小字节数的累加。
NSURL *cacheDirectory = [[NSFileManager defaultManager] URLForDirectory:NSCachesDirectory inDomain:NSUserDomainMaskappropriateForURL:nil create:NO...
分类:
移动开发 时间:
2015-03-08 17:11:11
阅读次数:
133
UIWebView *_myWebView=[[UIWebView alloc]initWithFrame:self.view.frame]; NSURL * url =[[NSURL alloc]initWithString: @"http://www.newsbaidu.com"]; ...
分类:
其他好文 时间:
2015-03-05 09:11:46
阅读次数:
180
UIWebView *web=[[UIWebView alloc]initWithFrame:self.view.frame]; web.delegate=self; NSURL *URL=[NSURL URLWithString:@"http://baidu.com"]; ...
分类:
Web程序 时间:
2015-03-04 16:22:36
阅读次数:
134
http://www.cnblogs.com/wendingding/p/3813572.htmliOS开发网络篇—NSURLConnection基本使用一、NSURLConnection的常用类(1)NSURL:请求地址(2)NSURLRequest:封装一个请求,保存发给服务器的全部数据,包括一...
分类:
移动开发 时间:
2015-03-02 14:33:39
阅读次数:
164
一、同步GET请求方法-(void)synchronizationGet{ NSString *strURL = @"http://olasapi.sinaapp.com//index.php"; NSURL *url = [NSURL URLWithString:strURL]; NSURL...
分类:
移动开发 时间:
2015-03-02 11:02:05
阅读次数:
168