float coordinate =2.0f;
[nodeScrollView setContentOffset:CGPointMake(460* coordinate,0) animated:YES];
 

for (UIView *view in [[self superview] subviews]) {

        if ([view isKindOfClass:[UIScrollView class]]) {

            UIScrollView *bgView = (UIScrollView *)view;

            [bgView setContentOffset:CGPointMake(0, 0) animated:YES];

            DLog(@"Slide to ringtone view!");

        }

    }

相关文章:

  • 2022-12-23
  • 2021-05-15
  • 2021-11-30
  • 2022-01-03
  • 2022-01-11
  • 2021-08-29
  • 2022-12-23
  • 2021-07-01
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-02
相关资源
相似解决方案