无法访问 Swift 中的自定义 tableviewcell 按钮属性

Unable to access custom tableviewcell button properties in Swift

正在开发我的第一个 iOS 应用程序。我已经创建了 nib 和一个自定义的 tableview 单元格。单元格有按钮和标签。我能够访问标签,但由于某种原因我无法获得按钮的属性,例如设置标题。我只能访问以下内容:

cell.followUserButton(sender: AnyObject)

为什么我不能去

cell.followUserButton.setTitle = "Unfollow" 

我在网上看了很多。找不到任何东西。任何帮助表示赞赏。谢谢。

你必须这样写setTitle()

cell.followUserButton.setTitle("Sample Title", forState: .Normal)

顺便说一下,setTitle() 不是 属性 函数。

解决了我自己的问题。我将其设置为仅 IBAction。如果您想更改属性,那么您 也必须将按钮设为插座!

@IBOutlet weak var followUser: UIButton!

您可能已经知道,您可以在情节提要中执行此操作。现在完美运行。