V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
iOS 开发实用技术导航
NSHipster 中文版
http://nshipster.cn/
cocos2d 开源 2D 游戏引擎
http://www.cocos2d-iphone.org/
CocoaPods
http://cocoapods.org/
Google Analytics for Mobile 统计解决方案
http://code.google.com/mobile/analytics/
WWDC
https://developer.apple.com/wwdc/
Design Guides and Resources
https://developer.apple.com/design/
Transcripts of WWDC sessions
http://asciiwwdc.com
Cocoa with Love
http://cocoawithlove.com/
Cocoa Dev Central
http://cocoadevcentral.com/
NSHipster
http://nshipster.com/
Style Guides
Google Objective-C Style Guide
NYTimes Objective-C Style Guide
Useful Tools and Services
Charles Web Debugging Proxy
Smore
rannie
V2EX  ›  iDev

请教一下大家关于本地图片 ALAsset 相关的问题

  •  
  •   rannie ·
    rannie · 2015-08-10 17:14:02 +08:00 · 1790 次点击
    这是一个创建于 3173 天前的主题,其中的信息可能已经有所发展或是发生改变。

    在做一个全屏浏览本地相册的页面,但是滚动时会有卡顿 发现是跟 alasset 有关
    先贴代码
    - (void)loadImage
    {
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^
    {
    UIImage *image = [UIImage imageWithCGImage:[self.assetInfo.asset.defaultRepresentation fullScreenImage]];

    dispatch_async(dispatch_get_main_queue(), ^
           {
              self.imageView.image = image;
           });
        });
    }
    

    会感觉到 fullScreenImage 读取图片的时候会卡顿

    1 条回复    2015-08-14 15:02:21 +08:00
    yh4801480
        1
    yh4801480  
       2015-08-14 15:02:21 +08:00
    self.assetInfo.asset.defaultRepresentation fullScreenImage 你这个方法拿的是全图,浏览的时候拿缩略图就可以了 改成self.assetInfo.asset.defaultRepresentation thumbnailImage
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5858 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 28ms · UTC 01:49 · PVG 09:49 · LAX 18:49 · JFK 21:49
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.