码迷,mamicode.com
首页 > 其他好文 > 详细

uiTableView 下拉效果

时间:2014-08-02 15:15:03      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:des   os   io   cti   size   table   ui   c   

-(void)tableView:(UITableView *)tableView

didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

    

    [tableView deselectRowAtIndexPath:indexPath

                             animated:YES];

    

    if (tableView.tag==20001)

    {

        

        //下拉效果  isPllDown默认为NO

        if (!isPullDown)

        {

            

            [UIView animateWithDuration:0.3

                             animations:^

            {

                CGRect cgRectPullDownActivesNames=tableView.frame;

                cgRectPullDownActivesNames.size.height=20*5;

                [tableView setFrame:cgRectPullDownActivesNames];

              

                

            }];

            

            isPullDown=!isPullDown;

 

 

        }

        else

        {

            [UIView animateWithDuration:0.3

                             animations:^

             {

                 CGRect cgRectPullDownActivesNames=tableView.frame;

                 cgRectPullDownActivesNames.size.height=20;

                 [tableView setFrame:cgRectPullDownActivesNames];

                 

                 

             }];

 

            [tableView scrollToRowAtIndexPath:indexPath

                             atScrollPosition:UITableViewScrollPositionTop

                                     animated:YES];

            isPullDown=!isPullDown;

        }

 

uiTableView 下拉效果,布布扣,bubuko.com

uiTableView 下拉效果

标签:des   os   io   cti   size   table   ui   c   

原文地址:http://www.cnblogs.com/louyizhidu/p/3886914.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!