Three20设置缩略图照片尺寸
Three20的照片应用程序设置从缩略图照片展开的照片的照片尺寸。我想将较大的图像调整为缩略图大小,保持纵横比相同。但似乎没有委托方法可以执行相同的操作。如何设置缩略图照片的大小?
我收到此异常
TTDASSERT failed: 0 == _queue.maxContentLength || 我的一张照片的contentLength <=_queue.maxContentLength
既没有显示在缩略图上,也没有显示在展开视图上。 如何解决这个问题?
提前致谢。
Three20's photo aplication sets the photo size of the photos which are expanded from thumbnail photos. I want to resize the bigger image into thumbnail size keeping the aspect ratio same. But there seems to be no delegate method to do the same. How to set the size of the thumbnail photos?
I'm getting this exception
TTDASSERT failed: 0 == _queue.maxContentLength || contentLength <=_queue.maxContentLength
for one of my photos that's not getting displayed neither on thumbnail nor on expanded view.
How to fix this?
Thanx in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想通了...
设置
[[TTURLRequestQueue mainQueue] setMaxContentLength:0];
在你的应用程序委托中...将其设置为 0 将使任何图像通过,无论有多大..
I figured this out...
Set
[[TTURLRequestQueue mainQueue] setMaxContentLength:0];
in your application delegate... Setting it to 0 will let any image through, no matter how large..