UITextField の位置を取得するにはどうすればよいですか??
多くの UITextFields を適切に作成し、それらを画面上に移動できます。次に、次の方法で(タグによる)、書き込みを細かく検出しますが、位置も必要です(es:GRect 0,0,0,0)。
for (UITextField *text in array2) {
int touchedtag = text.tag;
NSUInteger tagCount = touchedtag;
switch (tagCount) {
case 1:
size = [NSString stringWithFormat:@"%@", text.frame];
object = [NSString stringWithFormat:@"%@ %@", text.text, size];
break;
}
これを(サイズを使用して)試しましたが、機能しません。助けてくれてありがとう