作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想从外部 tableView func 访问 tableView 的单元格,例如,在这种情况下,我想从 IBAction Func 访问,然后我创建了 tableView 对象和 IndexPath 对象,当我运行我的项目时,Xcode 向我显示此错误:
Fatal error: unexpectedly found nil while unwrapping an Optional values
对于这一行:mytableView!.cellForRowAtIndexPath(indexPath!)
@IBAction func editButtonFunc(sender: AnyObject) {
mytableView!.cellForRowAtIndexPath(indexPath!)
let cell =
mytableView!.dequeueReusableCellWithIdentifier(
"mycell", forIndexPath: indexPath!)
as! profileTableViewCell
cell.contentOutlet.text = contentItems[indexPath!.row]
cell.contentOutlet.textAlignment = NSTextAlignment.Right
cell.contentOutlet.font = UIFont(name: "X Yekan", size: 18)
}
最佳答案
如果你只想获取某个单元格的引用,也许你需要:
func getTableViewCell() -> UITableViewCell? {
guard let tableView = mytableView, index = indexPath
else { return nil }
return tableView.cellForRowAtIndexPath(index)
}
而且,如果您想为 tableViewCell 设置数据,您应该在 UITableViewDataSource
方法中执行此操作:cellForRowAtIndexPath
.
关于ios - 在展开可选值访问 tableView Cell 时意外发现 nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33495199/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!