这段代码是否有Swift等价物?

时间:2016-08-08 02:19:05

标签: objective-c swift

此代码在键盘出现时将文本视图滚动到视图中,但仅在objective-C中滚动。有没有办法在Swift中做到这一点?

CGPoint scrollPoint = CGPointMake(0, textField.frame.origin.y);
[scrollView setContentOffset:scrollPoint animated:YES];

1 个答案:

答案 0 :(得分:3)

等效的Swift代码如下。

let scrollPoint = CGPoint(x: 0, y: textField.frame.origin.y)
scrollView.setContentOffset(scrollPoint, animated: true)

学习Swift有很多很好的资源。 The Apple book on Swift是免费且非常好的。