我傳遞一個值ViewControllerA通過segue到ViewControllerB。在ViewControllerB我寫一個函數中,我是回我從A得誰調用這個函數從另一個視圖控制器調用方法
ViewControllerB
-(int)ButtonTagValue
{
NSlog("selected Button Value is %i ", selectedButtonValue)
return selectedButtonValue;
}
在ViewControllerC
我試圖訪問該功能類似這樣的
ViewControllerB *viewControllerB = [[ViewControllerB alloc]init];
viewControllerB.ButtonTagValue
值
但是這個函數在.
運算符之後沒有進入選擇。我如何訪問ViewControllerC中的ButtonTagValue函數,因爲我需要buttonselectedValue.
或者我在這裏做錯了什麼。請告訴我。我的oop概念不是很好
爲什麼叫你用點的方法?你應該將你的方法/ var命名爲小寫。你創建了一個新的ViewControllerB,而我想你想訪問一個已經存在的。 – Larme