0

好吧,我现在正在学习一些 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)

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

4

2 回答 2

2

你的陈述有问题。使用以下内容:

@myUITextView.setAutocorrectionType(UITextAutocorrectionTypeNo)
于 2013-06-18T07:06:43.723 回答
0

在我看来,您在调用setAutocorrectionType. 尝试:

@myUITextView.setAutocorrectionType(UITextAutocorrectionTypeNo)
于 2013-06-19T21:57:39.550 回答