解决headerView 的resize问题

来源:互联网 发布:怎么测网络是多少兆 编辑:程序博客网 时间:2024/05/18 06:38

        [UIViewbeginAnimations:nilcontext:nil];

        [UIViewsetAnimationDuration:0.3];

        [UIViewsetAnimationCurve:UIViewAnimationCurveEaseInOut];


        // beginUpdates and endUpdates trigger the animation of our cells

        [self.myTableViewbeginUpdates];

        [self.headerViewsetFrame:CGRectMake(self.headerView.frame.origin.x,self.headerView.frame.origin.y,self.headerView.frame.size.width,self.detailLabel.frame.origin.y+self.detailLabel.frame.size.height+10)];

    

        [self.myTableViewsetTableHeaderView:self.headerView];

        [self.myTableViewendUpdates];

        [UIViewcommitAnimations];

        [self.myTableView.tableHeaderViewsetFrame:self.headerView.frame];


原创粉丝点击