初始化代码:
MatchViewControllerPhone(nibName:"MatchViewControllerPhone", bundle: nil)
MatchViewControllerPhone类部分代码:
class MatchViewControllerPhone: UIViewController
@IBOutlet weak var container: UIScrollView!
// MARK: - Life cycle
override func viewDidLoad() {
super.viewDidLoad()
self.container.delegate = self //在iOS8设备上报错:fatal error: unexpectedly found nil while unwrapping an Optional value
}