0

iOS6 では、このタラは機能します (myTextView はインスタンス変数です)。

myTextView = [[UITextView alloc] initWithFrame:CGRectMake(10, 10, 10, 10)];
myTextView.keyboardType = UIKeyboardTypeDefault;
[self addSubview:myTextView];

iOS5 では、オンラインでクラッシュします。

[myTextView becomeFirstResponder];

しかし、その状況で最も奇妙なことは、-に設定keyboardTypeした場合UIKeyboardTypeEmail、クラッシュしないことです!

何か案は?

4

1 に答える 1

1

メインスレッド以外のスレッドでUIKitメソッドを呼び出さないでください。それがうまくいけば、それはただの運です。

And please, next time you ask a question, do provide more detail in your actual questions, so people won't have to go through the comments to find the actual issue.

于 2013-03-05T19:14:14.780 に答える