我在我的appDelegate中創建了一個單身人士(稱爲sharedinstance),理想情況下我想從我的代碼中的所有其他對象/實例訪問它,但每次我想訪問在它的方法/ VAR,我在做如何在obj-c/ios中使用單身人士
Game *sharedInstance = [Game sharedInstance];
在任何方法在任何其他情況下,能夠做這樣的事情..
[sharedInstance.myMethod]
我試圖把
Game *sharedInstance;
在其他情況下的.h文件
,但是當我運行的代碼,遊戲= 0。我只是試圖把
Game *sharedInstance = [Game sharedInstance];
在其他情況下init方法,但是這不是幫助無論是。