我的 UI 上的 NSTextField 需要通过标签访问它们
我有 8 个 NSTextField,我需要通过 UI 访问它们以确定 NSTextField 是否有任何数据。如果它是空的,那么我将布尔值标记为“否”并检查下一个字段。最后,我将突出显示所有必填字段并将其呈现给用户。
这是我的伪代码
-(BOOL)isFormValid
{
for(int i=0; i< 9; i++)
{
if <tag>.text != nil or <tag>.text != @"" then
return NO
}
return YES;
}
I have 8 NSTextFields and I need to access them by UI to determine if the NSTextField has any data. If it's empty then I mark a bool as NO and check the next field. Eventually I'll highlight all the required fields and present it to the user.
Here's my pseudocode
-(BOOL)isFormValid
{
for(int i=0; i< 9; i++)
{
if <tag>.text != nil or <tag>.text != @"" then
return NO
}
return YES;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许这会有所帮助:
Probably this will help:
为什么不使用
NSForm
?顾名思义,它是为文本形式设计的。您对整个表单有一个出口,并且可以使用cellAtIndex:
Why don't you use an
NSForm
? As the name suggests, it's designed for text forms. You have one outlet to the form as a whole and can get each field in the form withcellAtIndex: