gpt4 book ai didi

ios - 如何在单击按钮时获取 UITableviewcell 值

转载 作者:行者123 更新时间:2023-11-28 18:11:57 28 4
gpt4 key购买 nike

我想在单击“登录”按钮时获取 UITableviewCell 值。当用户按下登录按钮时,我想获取第一个单元格(电子邮件)和第二个单元格(密码)值。请帮助我。

enter image description here

谢谢!谢丽丝

最佳答案

请尝试使用这个,希望对您有所帮助。但是您应该将标签 1 分配给电子邮件,将标签 2 分配给密码文本字段。

-(IBAction)loginBtnPressed:(IBAction)sender
{
UITableViewCell *emailCell = [self.tblView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
UITableViewCell *passwordCell = [self.tblView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:1 inSection:0]] ;//pass
UITextField *emailTxtFLd = (UITextField *)[emailCell viewWithTag:1];
UITextField *passwordTxtFLd = (UITextField *)[passwordCell viewWithTag:2];

NSLog(@"Email : %@",emailTxtFLd.text);
NSLog(@"Password : %@",passwordTxtFLd.text);
}

关于ios - 如何在单击按钮时获取 UITableviewcell 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16419088/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com