我正在尝试将两个按钮作为第一行和其余行,如下图所示(我为翻转的图片道歉):
并使用以下代码将第一个单元格添加到我的tableview中,如下所示:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
if indexPath.row == 0 {
//Configure the first cell with the two buttons
} else {
let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath)
cell.textLabel?.text = cathyList[indexPath.row]
}
return cell
}
我的逻辑允许我有两个按钮作为第一行单元格,但我不知道如何使按钮像这里显示的那样大而方形。有什么建议吗?