作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在使用 Storyboard开发一个 iPad 应用程序。在我的应用程序中,我有带有两个文本字段和一个按钮的弹出 View 。我需要做的是,如果我单击按钮,则需要在选定的文本框中显示一个文本.我如何找到在当前情况下选择了哪个文本框?下面给出了示例代码请帮助我完成功能。
- (IBAction)buttonPressed:(id)sender {
if(//Here i need to set the condition for check selected text box is first){
texbox1.text=@"User";
}
else{
textbox2.text =@"Admin";
}
}
最佳答案
- (IBAction)buttonPressed:(id)sender {
if([textbox1 isFirstResponder]){
//Cursor on textbox1
texbox1.text=@"User";
}
else if([textbox2 isFirstResponder]){
//Cursor on textbox2
textbox2.text =@"Admin";
}
else{
NSLog(@"None of them have cursor");
}
}
关于ios - 如何在 iOS 中查找选定的文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24401836/
我是一名优秀的程序员,十分优秀!