gpt4 book ai didi

uitableview - 在 Storyboard中和定义 VC 类之后编辑 UITableViewController

转载 作者:行者123 更新时间:2023-11-30 14:19:24 25 4
gpt4 key购买 nike

我正在使用 swift 和 XCode 6.3.1。我在 Storyboard中使用静态单元编辑了 TableView Controller 。为了对标签和 socket 进行编程,我创建了一个新的 UITableViewController Cocoa Touch 文件,并定义了我刚刚创建的 Cocoa Touch 文件的 View Controller 类。然而,一旦我声明了该类,我在 Storyboard中编辑的任何内容都不会出现在模拟器中。

import UIKit

class TableViewController: UITableViewController {

@IBOutlet weak var distanceSliderLbl: UILabel!
@IBOutlet weak var distanceSlider: UISlider!


override func viewDidLoad() {
super.viewDidLoad()

// Uncomment the following line to preserve selection between presentations
// self.clearsSelectionOnViewWillAppear = false

// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem()
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}

// MARK: - Table view data source

override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
// #warning Potentially incomplete method implementation.
// Return the number of sections.
return 0
}

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete method implementation.
// Return the number of rows in the section.
return 0
}


@IBAction func distanceSlider_Slide(sender: AnyObject) {

var currentValue = Int(distanceSlider.value)
distanceSliderLbl.text = "\(currentValue)"

}



override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("reuseIdentifier", forIndexPath: indexPath) as! UITableViewCell

// Configure the cell...

return cell
}

有什么办法可以解决这个问题吗?

最佳答案

删除创建文件时 XCode 生成的三个 tableview 函数。

前两个函数决定表格将有多少个部分和行。现在你说你的表有 0 个部分,所以这正是你得到的 - 什么也没有。由于您有静态单元格,因此您不需要这些函数,因为该数字是您在 Storyboard中固定的。如果您有由代码生成的动态单元格,您可能不知道总共有多少个部分和单元格,因此您需要使用这些函数。

第三个函数将使用单元格标识符来格式化动态生成的单元格,但同样,您不需要它,因为单元格是固定的(静态)

关于uitableview - 在 Storyboard中和定义 VC 类之后编辑 UITableViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30677993/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com