YIem`s Blog -心比天高命比纸薄-链接找不到的请在站内搜索内容!

iOS-网络数据请求-视频异步下载播放







//
// ViewController.m
// 网络数据请求-视频下载播放
//
// Created by YIem on 16/3/1.
// Copyright © 2016年 YIem. All rights reserved.
//

import "ViewController.h"

// 系统播放器调用

import <AVFoundation/AVFoundation.h>

@interface ViewController ()<NSURLSessionDownloadDelegate>
// 视频
@property (nonatomic, retain) NSURLSessionDownloadTask *downTask;
// 下载进度条
@property (nonatomic, retain) UIProgressView *progressV;
@end

@implementation ViewController

}
// 暂停下载

if (NSURLSessionTaskStateRunning == self.downTask.state) {
    [self.downTask suspend];
}

}
// 继续下载

// 播放

// 视频下载

@end

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »