私はさまざまな方法を試しましたが、すべて警告が出ます。といった userName = [NSString stringWithFormat:@"%@", [yournamefield stringValue]];
これは私に警告を与えるだけです
「UITextField」は「-stringValue」に応答しない場合があります
どうすればよいですか?
text
プロパティを使用してテキストフィールド内のテキストを取得する
NSString *name = yourNameField.text;
text
のUITextField
プロパティを使用します。
NSString *userName = yourNameField.text;
どうですか:
userName = [NSString stringWithFormat:@"%@", yournamefield.text];
二つの方法。これはプロパティであり、どのプロパティ値にもこのようにアクセスできます-
yournamefield.text
[yournamefield text]