好吧,我现在正在向我学习一些RubyMotion,所以这可能是一个n00b问题。来了

我正在尝试关闭UITextView上的自动校正,这通常是通过IB接口完成的。到目前为止,这是我得到的:

@myUITextView.setAutocorrectionType(UITextAutocorrectionType autocorrectionType.UITextAutocorrectionTypeNo)


当然,这会引发错误...

app_delegate.rb:10:in `application:didFinishLaunchingWithOptions:': undefined local variable or method `autocorrectionType' for #<AppDelegate:0xc06c970 ...> (NameError)


有任何想法吗?干杯,非常感谢您的帮助。

最佳答案

在我看来,您正在向setAutocorrectionType的调用中传递类型AND值。尝试:

@myUITextView.setAutocorrectionType(UITextAutocorrectionTypeNo)

10-08 04:26