标签: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
标签:des os io cti size table ui c
原文地址:http://www.cnblogs.com/louyizhidu/p/3886914.html