我在Swift(简化)中使用自定义segue:
import Foundation
public class CustomSegue: UIStoryboardSegue {
override public func perform() {
super.perform()
}
}
在故事板上将此类设置为segue类,在iOS 9上完美运行时在IOS 8上导致运行时错误:
[APP_NAME.CustomSegue setUseDefaultModalPresentationStyle:]:无法识别的选择器已发送至实例
虽然在使用任何其他segue类型时遇到类似错误,但我正在使用呈现模态。