답변:
Objective-C의 다음 명령문 중 하나를 사용하여 스크롤보기에서 특정 지점으로 스크롤 할 수 있습니다.
[scrollView setContentOffset:CGPointMake(x, y) animated:YES];
또는 스위프트
scrollView.setContentOffset(CGPoint(x: x, y: y), animated: true)
Apple의 " 스크롤보기 내용 스크롤 "안내서도 참조하십시오 .
로 슬라이드 쇼를 수행하려면 UIScrollView
스크롤보기에서 모든 이미지를 정렬하고 반복 타이머를 설정 한 다음 -setContentOffset:animated:
타이머가 실행될 때
그러나보다 효율적인 방법은 2 개의 이미지보기를 사용하고 전환을 사용하거나 타이머가 실행될 때 단순히 위치를 전환하여 이미지를 바꾸는 것입니다. 자세한 내용은 iPhone 이미지 슬라이드 쇼 를 참조하십시오.
(myScrollView.contentOffset.x +320)
.
(myScrollView.contentOffset.x +320)
열쇠가 있습니다!
contentOffset:
는 contentSize도 오프셋하므로 바람직하지 않습니다. 스크롤 만하려면을 사용할 수 있습니다 scrollRectToVisible:
.
CGPointMake
Swift 와 같은 C 도우미 기능을 사용하지 마십시오 . 간단히 스위프트 구조체를 직접 빌드하십시오 :CGPoint(x: 0, y: 44)
다른 방법은
scrollView.contentOffset = CGPointMake(x,y);
CGPoint
이어야한다 CGPointMake
.
이 주제가 9 살이고 실제 정답이 여기에 없다는 것에 놀랐습니다!
당신이 찾고있는 것은입니다 scrollRectToVisible(_:animated:)
.
예:
extension SignUpView: UITextFieldDelegate {
func textFieldDidBeginEditing(_ textField: UITextField) {
scrollView.scrollRectToVisible(textField.frame, animated: true)
}
}
그것이하는 것은 정확히 당신이 필요로하는 것이며, 해키보다 훨씬 낫습니다. contentOffset
이 메소드는 컨텐츠보기를 스크롤하여 rect에 의해 정의 된 영역이 스크롤보기 안에 표시되도록합니다. 해당 영역이 이미 표시되어 있으면이 방법은 아무 작업도 수행하지 않습니다.
보낸 사람 : https://developer.apple.com/documentation/uikit/uiscrollview/1619439-scrollrecttovisible
- (void)viewDidLoad
{
[super viewDidLoad];
board=[[UIView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.height, 80)];
board.backgroundColor=[UIColor greenColor];
[self.view addSubview:board];
// Do any additional setup after loading the view.
}
-(void)viewDidLayoutSubviews
{
NSString *str=@"ABCDEFGHIJKLMNOPQRSTUVWXYZ";
index=1;
for (int i=0; i<20; i++)
{
UILabel *lbl=[[UILabel alloc]initWithFrame:CGRectMake(-50, 15, 50, 50)];
lbl.tag=i+1;
lbl.text=[NSString stringWithFormat:@"%c",[str characterAtIndex:arc4random()%str.length]];
lbl.textColor=[UIColor darkGrayColor];
lbl.textAlignment=NSTextAlignmentCenter;
lbl.font=[UIFont systemFontOfSize:40];
lbl.layer.borderWidth=1;
lbl.layer.borderColor=[UIColor blackColor].CGColor;
[board addSubview:lbl];
}
[NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(CallAnimation) userInfo:nil repeats:YES];
NSLog(@"%d",[board subviews].count);
}
-(void)CallAnimation
{
if (index>20) {
index=1;
}
UIView *aView=[board viewWithTag:index];
[self doAnimation:aView];
index++;
NSLog(@"%d",index);
}
-(void)doAnimation:(UIView*)aView
{
[UIView animateWithDuration:10 delay:0 options:UIViewAnimationOptionCurveLinear animations:^{
aView.frame=CGRectMake(self.view.frame.size.height, 15, 50, 50);
}
completion:^(BOOL isDone)
{
if (isDone) {
//do Somthing
aView.frame=CGRectMake(-50, 15, 50, 50);
}
}];
}