我在我的 appDelegate 中创建了一个单例(称为 sharedinstance),理想情况下我想从我的代码中的所有其他对象/实例中访问它,但是每次我想访问其中的方法/变量时,我都必须这样做
Game *sharedInstance = [Game sharedInstance];
在任何其他情况下以任何方法能够做类似的事情..
[sharedInstance.myMethod]
我试着把
Game *sharedInstance;
在另一个实例的 .h 文件中,但是当我运行代码时,Game = 0。我只是尝试将
Game *sharedInstance = [Game sharedInstance];
在其他情况下,init 方法也无济于事。