使用 NSOperationQueue 下载多个视频

发布于 2024-11-26 12:45:00 字数 525 浏览 2 评论 0原文

我有以下几行代码可以从我的应用程序开始多次下载。问题是,NSInitationQueue 没有调用选择器方法,即 downloadMyVideos

请问有人可以告诉我以下代码到底有什么问题吗?

    - (void)viewWillAppear:(BOOL)animated
    {
        [operationQueue cancelAllOperations];
        operationQueue = [[NSOperationQueue alloc] init];
        [operationQueue setSuspended:YES];

        indexOperation = [[NSInvocationOperation alloc]initWithTarget:self selector:@selector(downloadMyVideo) object:nil];
        [operationQueue addOperation:indexOperation];
    }

I have code following lines to start multiple downloads from my application. The problem is, the NSInvocationQueue is not calling selector method, i.e. downloadMyVideos.

Can please anyone let me know, exactly what is wrong with following code?

    - (void)viewWillAppear:(BOOL)animated
    {
        [operationQueue cancelAllOperations];
        operationQueue = [[NSOperationQueue alloc] init];
        [operationQueue setSuspended:YES];

        indexOperation = [[NSInvocationOperation alloc]initWithTarget:self selector:@selector(downloadMyVideo) object:nil];
        [operationQueue addOperation:indexOperation];
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉月流沐 2024-12-03 12:45:00

您已暂停队列。

添加到挂起队列的操作不会运行。这可能是你的问题,除非你在其他地方开始排队。

You've suspended your queue.

Operations that you add to a suspended queue are not run. That could be your problem, unless you are starting the queue elsewhere.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文