Tableview会自动重新加载内容

时间:2016-04-13 17:18:11

标签: swift tableview segue reload

我在从tableview移动到视图时遇到问题。

为了解释这个问题,我有一个名为myObjects的视图,其中包含一个tableview,其中加载了一些用户对象,如果用户点击单元格,则使用模态segue调用新视图(objectConsult)。

在此视图中,用户将找到有关其对象的所有信息,当他点击与模态segue链接的后退按钮时,他会回到myObjects。

我的问题是,我每次点击来自objectConsul的后退按钮时我的tableview重新加载单元格,我已经成功阻止了在Objective-C中的重新加载但是在swift中我不明白我必须做什么来解决问题

override func viewDidAppear(animated: Bool) {
             tableView.reloadData()
    }


func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    let cell:CustomCell = self.tableView.dequeueReusableCellWithIdentifier("Cell") as! CustomCell
    cell.picture.frame = CGRectMake(5,0,120,103)

    cell.title.text =  repos[indexPath.row].title

        let i = settings.ImagesCachedArray.indexOf({$0 == repos[indexPath.row].idobjet!})            
        let myImageName = "\(settings.ImagesCachedArray[i!]).png"            
        let imagePath = fileInDocumentsDirectory(myImageName)
        if let _ = self.loadImageFromPath(imagePath) {
            cell.picture.image = self.loadImageFromPath(imagePath)
        }
        else {
            let imgzeroresult = UIImage(contentsOfFile: NSBundle.mainBundle().pathForResource("noimage", ofType: "png")!)
            cell.picture.image = imgzeroresult
        }
}

    func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    performSegueWithIdentifier("mysegue", sender: self.view)
}

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

问题是:

<select class="btn nav-height-select" id="heightSelect1" autocomplete="off">
    <option value="400">4' 0"</option>
    <option value="401">4' 1"</option>
    <option value="402">4' 2"</option>
    <option value="403">4' 3"</option>
    <option value="404">4' 4"</option>
    <option value="405">4' 5"</option>
    <option value="406">4' 6"</option>
    <option value="407">4' 7"</option>
    <option value="408">4' 8"</option>
    <option value="409">4' 9"</option>
    <option value="410" selected="selected">4'10"</option>
    <option value="411">4'11"</option>
    <option value="500">5' 0"</option>
</select>

为viewDidLoad更改此方法

override func viewDidAppear(animated: Bool) {
         tableView.reloadData()
}