• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - IBOutlet 为零,但它在 Storyboard 中连接(Swift 2)

[复制链接]
菜鸟教程小白 发表于 2022-12-13 11:38:53 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我试图在 UITableView 的单元格中显示一些内容。该程序确实到达 cellForRowAtIndexPath:

 override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    let cell: EventTableViewCell = self.tableView.dequeueReusableCellWithIdentifier("eventCell") as! EventTableViewCell

    let date = self.eventArray[indexPath.row].startTime
    let calendar = NSCalendar.currentCalendar()
    let minutes = calendar.component(NSCalendarUnit.Minute, fromDate: date)
    var minutesString: String
    if (minutes == 0) {
        minutesString = "00"
    } else {
        minutesString = String(calendar.component(NSCalendarUnit.Minute, fromDate: date))
    }
    let hours = calendar.component(NSCalendarUnit.Hour, fromDate: date)
//this next line of code works, i see cell text:
//  cell.textLabel?.text = self.eventArray[indexPath.row].title + " - \(hours):\(minutesString)"

//these lines do not work, see empty cells:
    cell.cellLable?.text = self.eventArray[indexPath.row].title + " - \(hours):\(minutesString)"
    cell.textField?.text = self.eventArray[indexPath.row].notes
    return cell
}

我已正确连接网点: enter image description here

如果我设置断点,单元格似乎是 EventTableViewCell,但 cellLabeltextField 都是 nil: enter image description here

我的表格 View 连接如下所示:

enter image description here

这里的 eventCell 连接检查器: enter image description here

我还将内容 View 的背景颜色设为蓝色,但我的单元格中似乎看不到整个内容 View 。

我的自定义单元格类如下所示: enter image description here



Best Answer-推荐答案


检查您在 IB 中的单元格标识符是否正确。 Let cell... 返回 nil,这似乎是您的问题。

let cell: EventTableViewCell = self.tableView.dequeueReusableCellWithIdentifier("eventCell") as! EventTableViewCell 

关于ios - IBOutlet 为零,但它在 Storyboard 中连接(Swift 2),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33478194/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap