我有一個類(NavBar)與我想放在一個數組中的幾個變量。我目前得到這個錯誤。Swift 2.0數組初始化
的代碼引發錯誤是如下「實例構件buttonOne不能類型的NavBar使用」。
// Buttons
var buttonOne: Button?
var buttonTwo: Button?
var buttonThree: Button?
var buttonFour: Button?
var buttonFive: Button?
var buttonsArray: [Button] = [buttonOne, buttonTwo, buttonThree, buttonFour, buttonFive]
至少做了什麼Arsen建議。但是,您發佈的錯誤勉強與您的Button實例的可選性有關。 –
您的代碼缺少某些上下文,以使此錯誤具有完整意義。 – nhgrif
嘗試上傳缺少的代碼上下文。 –