博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TTRequestLoader max content size issue
阅读量:5323 次
发布时间:2019-06-14

本文共 919 字,大约阅读时间需要 3 分钟。

报错为:

TTRequestLoader connection:didReceiveResponse:](354): TTDASSERT failed: 0 == _queue.maxContentLength || contentLength <=_queue.maxContentLength

解决方法:

// If you hit this assertion it's because a massive file is about to be downloaded.   // If you're sure you want to do this, add the following line to your app delegate startup   // method. Setting the max content length to zero allows anything to go through. If you just   // want to raise the limit, set it to any positive byte size.   // [[TTURLRequestQueue mainQueue] setMaxContentLength:0] So calling [[TTURLRequestQueue mainQueue] setMaxContentLength:0] should do it. 在layoutSubviews

- (void)layoutSubviews {

    [superlayoutSubviews];    

    _statusSpinner.frame = CGRectMake(141, 221, 37, 37);

    _statusSpinner.center = CGPointMake(160, 240);

    [[TTURLRequestQueuemainQueue] setMaxContentLength:0];

}

 

 

 

转载于:https://www.cnblogs.com/worldworld/archive/2012/05/29/2523766.html

你可能感兴趣的文章
Node.js Express项目搭建
查看>>
zoj 1232 Adventure of Super Mario
查看>>
Oracle 序列的应用
查看>>
1201 网页基础--JavaScript(DOM)
查看>>
组合数学 UVa 11538 Chess Queen
查看>>
oracle job
查看>>
Redis常用命令
查看>>
EFCode First 导航属性
查看>>
XML学习笔记(二)-- DTD格式规范
查看>>
I - Agri-Net - poj 1258
查看>>
git 的回退
查看>>
IOS开发学习笔记026-UITableView的使用
查看>>
Confluence配置数据库
查看>>
Java锁机制(一)synchronized
查看>>
002.文件删除功能
查看>>
[转载]电脑小绝技
查看>>
windos系统定时执行批处理文件(bat文件)
查看>>
06-redis主从
查看>>
linux下面桌面的安装
查看>>
thinkphp如何实现伪静态
查看>>