使用位于屏幕底部的UITextField
,当键盘打开时,用户无法看到他写的是什么,因为键盘覆盖了文本字段。
有没有办法看到你写的内容或推文字段页面?
userName = [[UITextField alloc] initWithFrame:CGRectMake(133, 280, 200, 30)];
[userName setDelegate:self];
[userName setText:@"NickName"];
[userName setBorderStyle:UITextBorderStyleRoundedRect];
[userName setTextColor: [UIColor colorWithRed:0 green:0 blue:0 alpha:1.0]];
[[[[CCDirector sharedDirector] view] window] addSubview:userName];
答案 0 :(得分:0)
我认为..YOu必须在Scrollview中使用该文本字段。这样用户可以向上滚动,这样就可以看到他正在输入的内容。
更新:我找到了THIS链接,可满足您的需求。