We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9906af commit 5e2604eCopy full SHA for 5e2604e
MenuExample/Controller/MenuViewController.swift
@@ -19,7 +19,10 @@ class MenuViewController: UITableViewController {
19
override func viewWillAppear(animated: Bool) {
20
super.viewWillAppear(animated)
21
22
+// For some reason iOS9 ignore background color for this VC when it set from storyboard. With white background animation looks ugly...
23
+// TODO: Try to remove it after iOS9 release.
24
self.view.backgroundColor = UIColor.clearColor()
25
+
26
let indexPath = NSIndexPath(forRow: selectedItem, inSection: 0)
27
tableView.selectRowAtIndexPath(indexPath, animated: false, scrollPosition: .None)
28
}
0 commit comments