菜鸟教程小白 发表于 2022-12-13 03:50:49

ios - 自定义 UITableViewCell 异常


                                            <p><p>可能是什么?
无法在(UIView)上设置(标识符)用户定义的检查属性::此类不符合键标识符的键值编码。
在 iOS 8 上它可以工作,但在调试器中会发送垃圾邮件,在以前的版本中它会导致应用程序崩溃。
我检查并重新连接了界面生成器中的所有连接。</p>

<p>我的代码 cellForRowAtIndexPath:</p>

<pre><code>func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -&gt; UITableViewCell {
      var cell = tableView.dequeueReusableCellWithIdentifier(self.identifier, forIndexPath: indexPath) as PostCell

      cell.backgroundColor = UIColor.clearColor()

      cell.likeButton.setBackgroundImage(UIImage(named: &#34;post_like_active&#34;), forState: UIControlState.Selected)
      cell.dislikeButton.setBackgroundImage(UIImage(named: &#34;post_dislike_active&#34;), forState: UIControlState.Selected)

      var storageManager: PostStorageManager = PostStorageManager.sharedManager()
      var model: PostModel = storageManager.storageObjects() as PostModel

      cell.likeButton.selected = model.likeManager.likeState!.liked
      cell.dislikeButton.selected = model.likeManager.likeState!.disliked

      cell.textView.text = model.text
      cell.textView.font = UIFont(name: &#34;HelveticaNeue-Light&#34;, size: fontSize)!
      cell.textView.contentInset = UIEdgeInsets(top: self.contentInsetTop, left: 0, bottom: 0, right: 0)

      cell.likeLabel.text = String(format: &#34;%@&#34;, model.amountOfLikes)
      cell.dislikeLabel.text = String(format: &#34;%@&#34;, model.amountOfDislikes)

      var date: NSDate = model.date

      cell.timeLabel.text = date.timeAgo()

      var tapRecog: UITapGestureRecognizer = UITapGestureRecognizer(target: self, action: &#34;tapOccure:&#34;)
      tapRecog.numberOfTapsRequired = 1
      cell.textView.addGestureRecognizer(tapRecog)

      var isMan = model.isMan.boolValue

      cell.trollfaceImage.image = UIImage(named: String(format: &#34;%@_%i&#34;, isMan ? &#34;man&#34; : &#34;woman&#34;, model.experiance.integerValue))

      var manColor = UIColor(red: 41/255, green: 86/255, blue: 115/255, alpha: 1)
      var womanColor = UIColor(red: 206/255, green: 68/255, blue: 96/255, alpha: 1)
      cell.ageLabel.textColor = isMan ? manColor : womanColor
      cell.ageLabel.text = String(format: &#34;%i&#34;, model.age.integerValue)

      cell.textView.userInteractionEnabled = false

      return cell
    }
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>检查单元格中的所有 View ,我认为您将标识符放在错误的位置。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 自定义 UITableViewCell 异常,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/27346576/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/27346576/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 自定义 UITableViewCell 异常