- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 https://github.com/intuit/AnimatedFormFieldTableViewCell在我的项目中,但我无法理解设置它的步骤。到目前为止,我已经从文件夹中拖出文件并按照以下步骤操作:
为了使用AnimatedFormFieldTableViewCell
,您所要做的就是:
1) 在您为重用标识符实现 UITableView 的 ViewController 上注册 AnimatedFormFieldTableViewCell
nib。
override func viewDidLoad() {
super.viewDidLoad()
self.tableView.registerCellNib(AnimatedFormFieldTableViewCell)
tableView.reloadData()
}
2) 将 CellForRowAtIndexPath 上的单元作为 AnimatedFormFieldTableViewCell 出队。
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cellIdentifier = "cell"
let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath) as! AnimatedFormFieldTableViewCell
return cell
}
3) 通过对单元格本身调用 setLabelText 来更改占位符的标签文本。
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cellIdentifier = "cell"
let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath) as! AnimatedFormFieldTableViewCell
cell.setLabelText("Enter title")
return cell
}
注意事项:
1) 您仍然可以像在常规 UITextField 上实现的方式一样实现 UITextFieldDelegate,您只需要定义 AnimatedFormFieldTableViewCell 的委托(delegate)(无需直接为嵌入式 UITextField 定义委托(delegate))。
2) 为了访问嵌入的 UITextField,您可以简单地调用单元格的 cellTextField 属性。
I don’t get these last two steps.
如果我运行我的应用程序,我会在 AnimatedFormFieldTableViewCell
类的 self.cellTextfield.delegate = self
上得到 unexpectedly found nil
。
我错过了什么?
最佳答案
嗨 waseefakhtar你的代码不会遗漏任何东西。唯一的问题是你用错误的方式注册了 Nib ,这就是为什么你在 self.cellTextfield.delegate = self
上得到了 unexpectedly found nil
错误。
试试这段代码:
let myNib = UINib.init(nibName: "AnimatedFormFieldTableViewCell", bundle: nil)
self.tableView.registerNib(myNib, forCellReuseIdentifier: "cell")
PS:请注意 registerNib 方法语法可能因 swift 版本而异
关于ios - 实现 UITextFieldDelegate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41813576/
我很好奇如何使类符合 UITextFieldDelegate,过去我总是添加它以允许访问协议(protocol)中定义的方法。然而,最后一次我忘记添加它,后来才意识到它丢失了。我的问题是为什么它可以在
提供以下派生类: #import @interface NumberPadViewController : UIViewController { UIImage *numberPadDone
这是一个奇怪的问题,但我对如何解决这个问题感到困惑 - 我有一个具有自定义 UITableViewCells 的 UITableView 。每个 UITableViewCell 都有两个 UIText
我在 textfield 和使用 Storyboard行编码的代码之间建立了联系。当我这样做时,我忘记先把 UITextFieldDelegate 放在上面。当我尝试使用 eventTitle.tex
当我从 UITextField 字段中逐一删除字符时,委托(delegate)方法 textField:shouldChangeCharactersInRange:replacementString:
我想使用 https://github.com/intuit/AnimatedFormFieldTableViewCell在我的项目中,但我无法理解设置它的步骤。到目前为止,我已经从文件夹中拖出文件并
我有以下代码来防止用户在 UITextField 中输入多个句点 .,它工作正常,但我想对其他人做同样的事情两个 textField,如何做到这一点? 我尝试将 delegate 分配给多个字段,但它
我想实现 UITextFieldDelegate在与 UIViewController 分开的一个类中但是当我这样做时,我得到一个 EXC_BAD_ACCESS运行时异常。 那么为什么这样做: cla
我有一个UITextField我想使用正则表达式。我想使用 - (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRan
我正在使用 iOS 5 并尝试将 TextField 与 UITextFieldDelegate 一起使用,它的工作方式与我想要的完全一样(但只是在第一个 View 中)。我不明白,为什么它在下一个
我对 swift 还很陌生,我无法理解以下情况。我正在尝试使用几个 UITextFieldDelegate 函数扩展 UIViewController 类... class ViewControlle
有没有一种方法可以检测 -[UITextFieldDelegate textFieldShouldReturn] 是由用户按下键盘上的“完成”键(或等效键)调用的,还是由程序调用调用的到 -[UITe
我和我的同事更喜欢用不同的方法来解决一项小任务。我们想知道社区的意见。 我们必须在编辑过程中处理 UITextField 的文本。 (文本应显示在 View 的标题中) 两种最简单的方法是: 1.注册
我在处理 UITextField 委托(delegate)时遇到这个错误: 找不到支持键盘 Wildcat-Landscape-QWERTY-Pad 类型 8 的键盘;使用 3673479387_Wi
我刚刚开始熟悉使用 XCTestCase 编写测试并探索其功能。我有一个简单的(如果设计的)应用程序,它加载一个带有按钮和文本字段的屏幕。选择文本字段时, View Controller 填充文本字段
在模拟器中选择文本字段时发生崩溃。调试器似乎没有告诉我任何有用的信息。 import UIKit class TextField: NSObject, UITextFieldDelegate {} 在
问题 在 UITextFieldDelegate 的 textField:shouldChangeCharactersInRange:replacementString 中,我们得到了 tf.text
我有 SequencedTextFields 协议(protocol),它包含文本字段序列。当用户点击键盘上的 Return 按钮时,当前文本字段应退出第一响应者,序列中的下一个文本字段应成为第一响应
我尝试在 UITextFieldDelegate 的函数中做一些检查,但我真的被卡住了。在一项检查中,我想验证用户是否尝试在 UITextfield 的前面插入空格并且不允许他这样做。在另一项检查中,
看来我对 UITextFieldDelegate 有问题。 我刚刚创建了一个响应 UITextFieldDelegate 协议(protocol)的 View Controller ,并轻松地将字段添
我是一名优秀的程序员,十分优秀!