繁体   English   中英

如何以编程方式滚动UIScrollView,它是自定义UITableViewCell的子视图?

[英]How to scroll UIScrollView programmatically which is a subview of the custom UITableViewCell?

我不知道为什么在增大current_set变量的情况下不能滚动滚动视图。当它是UITableView的子视图时,编写代码以滚动UIScrollView的确切位置是什么?

这是我的代码:

tableView:cellForRowAtIndexPath:的定义方法:

- (UITableViewCell *)tableView:(UITableView *)tableView1 cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
   NSString *cellIdentifier=[NSString stringWithFormat:@"regularExerciseCell%li",indexPath.row];
   RegularExerciseCell *cell=[tableView1 dequeueReusableCellWithIdentifier:cellIdentifier];
   if(!cell)
   {
      [tableView1 registerNib:[UINib nibWithNibName:@"RegularExerciseCell" bundle:nil] forCellReuseIdentifier:@"regularExerciseCell"];
      cell=[tableView1 dequeueReusableCellWithIdentifier:@"regularExerciseCell"];
   }
   NSLog(@"cellForRow At indexPath %li",indexPath.row);
   return cell;
}

这是tableView的定义:willDisplayCell:forRowAtIndexPath:方法

-(void)tableView:(UITableView *)tableView willDisplayCell:(RegularExerciseCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
  if(selectedIndex==indexPath.row)
  {
    cell.routineViewCard.hidden=NO;
    //SCROLL VIEW
    float scrollView_width=[UIScreen mainScreen].bounds.size.width;
    cell.setsScrollView.tag=indexPath.row;
    totalSetsInActiveExercise=[array count];
    for (int k=0; k<=totalSetsInActiveExercise; k++)
    {
      [cell.setsScrollView addSubview:[self subviewOfScrollView:scrollView_width]];
    }
    cell.setsScrollView.contentSize = CGSizeMake(scrollView_width*([workoutViewSetData count]+1),cell.setsScrollView.frame.size.height);
    if(condition) //this condition may be true or false depending upon the scenario
    {
      [self moveToNextSet:indexPath.row  and:@"left"];
    }
  }
  else
  {
    cell.routineViewCard.hidden=YES;
 }
}

实际滚动滚动视图的方法

-(void)moveToNextSet:(long)sender_tag  and:(NSString*)direction
{
  NSIndexPath *indexPath=[NSIndexPath indexPathForItem:sender_tag inSection:1];
  RegularExerciseCell *cell=(RegularExerciseCell*) [workoutTableView cellForRowAtIndexPath:indexPath];
  if ([direction isEqualToString:@"right"])
  {
    if(current_set!=0)
        current_set--;
  }
  else if([direction isEqualToString:@"left"])
  {
    current_set++;
  }

  CGRect frame = CGRectMake((cell.setsScrollView.bounds.size.width*(current_set)),0,cell.setsScrollView.bounds.size.width,cell.setsScrollView.bounds.size.height);
 [cell.setsScrollView scrollRectToVisible:frame animated:YES];
}

您可以尝试设置ScrollView的“ contentOffset”,而不是使用“ scrollRectToVisible”方法。

[cell.setsScrollView setContentOffset:CGPointMake(x, 0) animated:true];

x是您希望滚动视图滚动到的点。 如果您将(0,0)设置为最前面。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM