2017-09-17 19 views
0

私はカスタムテーブルビューを持つレシピアプリケーションを持っています。問題は、レシピ・ビュー・コントローラを入力してレシピ・リスト・ビュー・コントローラに戻るときに、以前のスクロール位置を維持していないことである。常にトップに戻ります。ビューコントローラを変更するときのスクロール位置を維持

私のコードに何かがあるか、前の位置を維持するために追加する必要があるかどうかは疑問だ。

これは私のレシピのリストビューコントローラから全体のコードです:

var recipeImgs: [UIImage] = [UIImage(named: "bananaPancakesCat.jpg")!,UIImage(named: "blackEyedPeaPattiesCat.jpg")!,UIImage(named: "blueberryMuffinsCat.jpg")!, UIImage(named: "buckwheatWafflesCat.jpg")!, UIImage(named: "cashewCreamCheeseCat.jpg")!, UIImage(named: "frenchToastCat.jpg")!, UIImage(named: "fruitSyrupCat.jpg")!, UIImage(named: "hashBrownsCat.jpg")!, UIImage(named: "proteinBarsCat.jpg")!, UIImage(named: "smoothieCat.jpg")!, UIImage(named: "tempehBaconCat.jpg")!, UIImage(named: "tofuQuicheCat.jpg")!] 

override func viewDidLoad() { 
    super.viewDidLoad() 
    tableView.delegate = self 
    tableView.dataSource = self 
} 

override func viewDidDisappear(_ animated: Bool) { 
    self.tableView.removeFromSuperview() 
} 

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 
    if let cell = tableView.dequeueReusableCell(withIdentifier: "RecipesTableViewCell") as? RecipesTableViewCell { 
     cell.configureCell(recipeImgs[(indexPath as NSIndexPath).row]) 
     return cell 

    } else { 
     return RecipesTableViewCell() 
    } 

} 

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { 
    if (UIDevice.current.userInterfaceIdiom == .pad) { 
     return 120 
    } 
     return 90.0 
} 

func numberOfSections(in tableView: UITableView) -> Int { 
    return 1 
} 

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 
    return recipeImgs.count 
} 

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { 
    if (indexPath as NSIndexPath).row == 0 { 
     performSegue(withIdentifier: "BRVC1", sender: self) 
    } else if (indexPath as NSIndexPath).row == 1 { 
     performSegue(withIdentifier: "BRVC2", sender: self) 
    } else if (indexPath as NSIndexPath).row == 2 { 
     performSegue(withIdentifier: "BRVC3", sender: self) 
    } else if (indexPath as NSIndexPath).row == 3 { 
     performSegue(withIdentifier: "BRVC4", sender: self) 
    } else if (indexPath as NSIndexPath).row == 4 { 
     performSegue(withIdentifier: "BRVC5", sender: self) 
    } else if (indexPath as NSIndexPath).row == 5 { 
     performSegue(withIdentifier: "BRVC6", sender: self) 
    } else if (indexPath as NSIndexPath).row == 6 { 
     performSegue(withIdentifier: "BRVC7", sender: self) 
    } else if (indexPath as NSIndexPath).row == 7 { 
     performSegue(withIdentifier: "BRVC8", sender: self) 
    } else if (indexPath as NSIndexPath).row == 8 { 
     performSegue(withIdentifier: "BRVC9", sender: self) 
    } else if (indexPath as NSIndexPath).row == 9 { 
     performSegue(withIdentifier: "BRVC10", sender: self) 
    } else if (indexPath as NSIndexPath).row == 10 { 
     performSegue(withIdentifier: "BRVC11", sender: self) 
    } else { 
     performSegue(withIdentifier: "BRVC12", sender: self) 
    } 
} 

そして、何が起こっているかを実証するためのビデオ:https://www.dropbox.com/s/g6jy37t97d1ihft/ScreenRecording_09-19-2017%2015%3A31.mp4?dl=0

+0

あなたが自己 'と最後offset.y位置を維持し、負荷メイクスクロールした後、あなたのViewControllerでVARを保つことができます。 tableView.setContentOffset(<#T ## contentOffset:CGPoint ## CGPoint#>、アニメーション:<#T##Bool#>) ' –

+0

元のView Controllerにどのように戻っていますか?既存のリストビューコントローラーに戻る代わりに新しいリストビューコントローラーを表示していませんか? – rmaddy

+0

@rmaddy Storyboard segues。それは私の問題ですか? –

答えて

0

オフセットコンテンツを追跡するために、あなたのビューコントローラに変数を追加します。スクロールビューのviewWillDisappear方法でその変数を設定し、viewWillAppear方法でのUITableViewのsetContentOffsetメソッドを呼び出す:

private var contentOffset: CGPoint? 

override func viewWillAppear(_ animated: Bool) { 
    super.viewWillAppear(animated) 

    if let contentOffset = self.contentOffset { 
     self.tableView.setContentOffset(contentOffset, animated: true) 
    } 
} 

override func viewWillDisappear(_ animated: Bool) { 
    super.viewWillDisappear(animated) 

    self.contentOffset = self.tableView.contentOffset 
} 
+0

しかし、これは必要ありません。他のView Controllerに移動して戻るだけでは、テーブルビューのスクロールオフセットは変更されません。スクロールオフセットを単にリセットするだけで問題が解決します。 – rmaddy

関連する問題