0
我剛剛在我的應用中實現了遊戲中心支持,就像這裏描述的How To Make A Simple Multiplayer Game with Game Center Tutorial: Part 1/2一樣。如何測試遊戲中心是否可用?
它被認爲是一個單身人士。在我的應用程序委託:
// At the end of applicationDidFinishLaunching, right before
// the last line that calls runWithScene:
[[GCHelper sharedInstance] authenticateLocalUser];
有點概述了方法和屬性:
@interface GCHelper : NSObject {
BOOL gameCenterAvailable;
BOOL userAuthenticated;
}
@property (assign, readonly) BOOL gameCenterAvailable;
+ (GCHelper *)sharedInstance;
- (void) authenticateLocalUser;
@end
由於我的應用程序委託現在參考GCHelper我不知道如何實際測試中的其他類(我提交分數)如果遊戲中心可用。
如何在另一個類中獲得GCHelper的單例實例?