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

UITableView 中的 cell 被 tableHeaderView 覆盖

  •  
  •   firecracker2 · 2015-08-24 16:48:01 +08:00 · 3440 次点击
    这是一个创建于 3178 天前的主题,其中的信息可能已经有所发展或是发生改变。

    如题, cell 并没有在 tableHeaderView 的下方,而是也是从 tableview 的 0 , 0 点开始,有大神知道原因吗?

    5 条回复    2015-08-24 17:31:40 +08:00
    urmyfaith
        1
    urmyfaith  
       2015-08-24 16:49:23 +08:00
    图图
    pupboss
        2
    pupboss  
       2015-08-24 17:05:13 +08:00
    这不刚好用来放广告,等不需要的时候 XXXtableView. tableHeaderView = nil;

    ....纯脑洞
    pupboss
        3
    pupboss  
       2015-08-24 17:11:56 +08:00
    算了我好好回答吧,你用的应该是
    - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger )section {

    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake (x, 8, 300, 25 )];
    label.text = @"xxxx";
    label.textAlignment = NSTextAlignmentCenter;
    return label;
    }

    换成这个:

    self.tableView.tableHeaderView=label;

    把这个作为整个 tableView 的 header ,而不是某一个 section 的
    firecracker2
        4
    firecracker2  
    OP
       2015-08-24 17:25:04 +08:00
    @pupboss 。。。我都写了是 tableHeaderView , tableView 的 header 和 section 的 header 还是分的清楚的。
    firecracker2
        5
    firecracker2  
    OP
       2015-08-24 17:31:40 +08:00
    找到原因了,如果我先给一个 UIView 实例的 frame 赋值,再把这个 view 实例赋给 self.tableView.tableHeaderView 是没有问题,但是我之前写成先把 view 实例赋给 tableHeaderView ,然后发现没有赋 frame 的值,之后就直接赋给了 tableHeaderView ,然后就出现了上述问题,应该是在给 tableHeaderView 赋值时,会通过这个 view 的 frame 来确定 cell 的位置吧,猜测。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   4420 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 31ms · UTC 01:00 · PVG 09:00 · LAX 18:00 · JFK 21:00
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.