我有一个包含按钮和桌面视图的应用程序,我希望一旦我点击按钮,部分标题会改变,内容会改变,我不想使用多个部分或行数很多。 只需一个部分和一行就可以在每次点击时更改其内容。问题是它没有显示,但是"测试"作为章节标题,没有别的。 这是我到目前为止所尝试的内容:
var key = Int()
func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String {
// do not display empty `Section`s
if(key == 1) {
return "Monthly Usage"
}
if(key == 2) {
return "Monthly Remaining"
}
if(key == 3) {
return "Current Package"
}
return "Test"
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as UITableViewCell
let row = indexPath.row
// Configure the cell...
switch(key) {
case 1:
cell.textLabel?.text = Data["Monthly_Usage"]
case 2:
cell.textLabel?.text = Data["Monthly_Remaining"]
case 3:
cell.textLabel?.text = Data["Monthly_Max"]
default:
cell.textLabel?.text = ""
}
return cell
}
@IBAction func Monthy_Usage() {
if tableView.hidden == true {
tableView.hidden = false
key = 1
}
else {
key = 1
}
println(key)
}
@IBAction func Monthy_Remaining() {
if tableView.hidden == true {
tableView.hidden = false
key = 2
}
else {
key = 2
}
println(key)
}
@IBAction func Current_Package() {
if tableView.hidden == true {
tableView.hidden = false
key = 3
}
else {
key = 3
}
println(key)
}
更新
刚解决它,我必须在每个IBAction函数中执行tableView.reloadData()
答案 0 :(得分:0)
我忘记了每次点击都需要重新加载数据,所以我就是这样解决的:
@IBAction func Monthy_Usage() {
if tableView.hidden == true {
tableView.hidden = false
key = 1
}
else {
key = 1
}
tableView.reloadData()
println(key)
}
@IBAction func Monthy_Remaining() {
if tableView.hidden == true {
tableView.hidden = false
key = 2
}
else {
key = 2
}
println(key)
tableView.reloadData()
}
@IBAction func Current_Package() {
if tableView.hidden == true {
tableView.hidden = false
key = 3
}
else {
key = 3
}
println(key)
tableView.reloadData()
}