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

TPKeyboardAvoiding 在 iOS 8 下的 UITableView 有个 bug

  •  
  •   yellowV2ex · 2015-01-05 02:28:14 +08:00 · 3345 次点击
    这是一个创建于 3393 天前的主题,其中的信息可能已经有所发展或是发生改变。

    https://github.com/michaeltyson/TPKeyboardAvoiding
    这是一个很常用的,不用写一句代码就可以为有输入框的 scrollView 和 tableView 自动处理键盘弹出遮挡的问题。

    今天收到一个奇怪的bug,因为之前 tableView 一直也没有超出屏幕,所以发现不了,超出屏幕之后,当键盘弹出来,再缩回去时,会调N次 setContentInset ,并且有其中一次会给 contentInset 的 bottom 一个负值,导致无法上拉看到下面的内容。iOS7和之前版本是正常的。

    debug了好久才找出来,解决方法在 TPKeyboardAvoidingTableView.m 加个判断即可:

    -(void)setContentInset:(UIEdgeInsets)contentInset {
        if(contentInset.bottom < 0)return;
        [super setContentInset:contentInset];
    }
    

    去作者的github,发觉万年没人管,就找个可以搜到的地方写出来留意坑。

    1 条回复    2015-01-05 10:22:47 +08:00
    icodesign
        1
    icodesign  
       2015-01-05 10:22:47 +08:00
    IQKeyboardManager 用的比较多
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2589 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 04:54 · PVG 12:54 · LAX 21:54 · JFK 00:54
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.