Added the MenuItemCell class, created @ IBOutlets for the necessary buttons, when I initialize the TableView, I get a cell like this:
cell = tableActivityTypes.dequeueReusableCell(withIdentifier: "activitySubtype")! as! MenuItemCell And then I assign the necessary text to the button:
cell.typeButton.titleLabel?.text = activityTypes[indexPath.row] But when you start the text of the buttons standard "Button". What am I doing wrong?