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
pysama
V2EX  ›  iDev

为什么我的 UIRefreshControl 在页面往下拉时没有变长的效果呢?

  •  
  •   pysama · 2015-06-18 11:29:18 +08:00 · 2173 次点击
    这是一个创建于 3258 天前的主题,其中的信息可能已经有所发展或是发生改变。

    RT. 代码也都是极其简单的,SDK版本是iOS7.1 。我做出的刷新按钮就是一个普通的菊花图案,越往下拉,菊花的花瓣逐渐展示出来。

    我想要的效果是,默认是一个圆形图标,往下拉时,圆形图标会像水滴一样被拉长。

    UIRefreshControl* fresh = [[UIRefreshControl alloc]init];
    fresh.attributedTitle =[[NSAttributedString alloc]initWithString:@"刷新下"];
    [fresh addTarget:self action:@selector(reloadList:) forControlEvents:UIControlEventValueChanged];
    dispatch_async(dispatch_get_main_queue(), ^{
    [fresh beginRefreshing];
    [fresh endRefreshing];
    });
    [self.webview.scrollView addSubview:fresh];
    

    如图:
    refreshcontrol

    求大神帮忙,谢谢。

    3 条回复    2015-06-18 12:04:03 +08:00
    iCell
        1
    iCell  
       2015-06-18 11:46:15 +08:00
    UIRefreshControl 在iOS 7之前的效果和你想要的效果是一样的,但是在 iOS 7 之后就变了。
    iCell
        2
    iCell  
       2015-06-18 11:47:18 +08:00   ❤️ 1
    如果你想要用 iOS 6 的 UIRefreshControl 的水滴效果,你可以参考这个代码自己实现一个 http://code4app.com/ios/iOS-6.0-Pull-to-Refresh/509b8aa26803fa466d000000
    pysama
        3
    pysama  
    OP
       2015-06-18 12:04:03 +08:00
    @iCell 非常感谢你的解答哈
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1946 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 27ms · UTC 00:23 · PVG 08:23 · LAX 17:23 · JFK 20:23
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.