Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何获取 NSCollectionView 中的文本字段的字符串值。文本字段是使用 collectionview 的原型创建的。
我不知道我是否应该使用representedObject或其他东西以及如何使用。
representedObject
在“cellForItemAtIndexPath”方法中,将 textfield 标签设置为 indexPath 行。
然后将文本字段委托设置为您的控制器或任何其他所需的对象。
在 UITextFieldDelegate 协议中的“textFieldDidEndEditing”方法上,检查文本字段中的标签,以便了解修改了哪个索引。
GL 高频