0
TextField1 및 TextField2가 있습니다.
TextField2로 인해 키보드가 표시된 경우에만 스크롤보기를 스크롤하고 싶습니다. 이것은 실제 코드입니다.
해결책이 있습니까?조건부 스크롤보기
-(void) viewWillAppear:(BOOL)animated {
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardDidShow:)
name:UIKeyboardDidShowNotification
object:self.view.window];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardDidHide:)
name:UIKeyboardDidHideNotification
object:nil];
}
-(void) keyboardDidShow:(NSNotification *) notification {
self.ScrollView.center = CGPointMake(self.originalCenter.x,
self.originalCenter.y-100);
}
-(void) keyboardDidHide:(NSNotification *) notification {
self.ScrollView.center = CGPointMake(self.originalCenter.x,
self.originalCenter.y);
}
GREAT을! 당신의 대답으로 해결해 줘서 고마워. – Beppino66