IOS 7 viewForHeaderInSection 的section從1開始而不是從0開始

來源:互聯網
上載者:User

標籤:des   style   blog   class   code   c   

【問題】

  (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section 方法中的section貌似從1開始而不是從0



【思路】

程式中雖然設定了 self.tableView.sectionHeaderHeight  =20 

還還是是不行 viewForHeaderInSection 中的section始終還是從1開始。

於是我發現, 如果你使用方法:

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section

{

    return 40;

}

就從0開始啦。 

 

尼瑪真吭 IOS7的新特性,其實 self.tableView.sectionHeaderHeight  =20 這種效率遠遠比方法要快。如果不存在特殊需求大家還是直接設定屬性來吧。

 

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{    return 40;}- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{    UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 40)];    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(20, 10, tableView.frame.size.width, 20)];    label.font = [UIFont systemFontOfSize:16.0f];  //UILabel的字型大小    label.numberOfLines = 0;  //必須定義這個屬性,否則UILabel不會換行    label.textColor = CR_RGBCOLOR(170, 170, 170);    label.textAlignment = NSTextAlignmentLeft;  //文本對齊    [label setBackgroundColor:[UIColor clearColor]];    label.text = self.sectionTitles[section];    [headerView setBackgroundColor:[UIColor clearColor]];    [headerView addSubview:label];    return  headerView;}- (UIView *) tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{    return [[CRCustomFooter alloc] init];}- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{    NSUInteger section = indexPath.section;    NSUInteger row = indexPath.row;        if(section == 1){        if (row == 0) {            [self recommendToFriends];            [tableView deselectRowAtIndexPath:indexPath animated:YES];        }else if(row == 1){            [self sendFeedback];            [tableView deselectRowAtIndexPath:indexPath animated:YES];        }else if(row == 2){            [self rateApp];            [tableView deselectRowAtIndexPath:indexPath animated:YES];        }else{        }    }}

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.