我正在尝试实现一种条款和条件页面的形式,其中“继续”按钮仅在用户滚动到 UITextView 底部时才启用。到目前为止,我已将我的类设置为 UIScrollView 委托并实现了以下方法:
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
NSLog(@"Checking if at bottom of UITextView");
CGPoint bottomOffset = CGPointMake(0,self.warningTextView.frame.size.height);
//if ([[self.warningTextView contentOffset] isEqualTO:bottomOffset])
{
}
}
我已经评论了 if 语句,因为我不确定如何检查 UITextView 是否位于底部。