我的應用程序有導航控件,我有2個UIViewController。 viewCon1是初始視圖控制器。在其他UiViewController中訪問UIViewController的func和變量
然後我在導航控制中推動了viewCon2。現在我想訪問變量和功能viewCon1在viewCon2沒有靜態邏輯。
我使用的靜態FUNC邏輯得到viewCon1即WK_DshBrd
let dashBoardObj = WK_DshBrd.getDasBoardObject() as! WK_DshBrd
dashBoardObj.unReadMsgsCaseArr?.append(caseNo)
的自我,但我得到的運行
Could not cast value of type 'Watch_Extension.WK_DshBrd' (0x7f1e0) to 'Watch_Extension.WK_DshBrd' (0x7ed78).
以下錯誤我怎樣才能將它轉換或替代的方式獲得所需functioanlity?
我得到了更好的答案http://stackoverflow.com/questions/33820903/get-wkinterfacecontroller-reference-while-pushing-interfacecontroller – Hassy