레이블이 Post인 게시물을 표시합니다. 모든 게시물 표시
레이블이 Post인 게시물을 표시합니다. 모든 게시물 표시

2011년 8월 17일 수요일

[Game Center] How to post a score to the Game Center? Here is is!


For using game center, your app should be on the Itunesconnect and enable Game Cener.

If you did that, here is what you have to do now.

It is very simple. Try the following codes.



GKScore* score = [[[GKScore allocinitWithCategory:@"game category name"]autorelease];
            score.value = totalTime*100;
            
            [score reportScoreWithCompletionHandler:^(NSError* error)
             {
                 if(error != NULL)
                 {
                 }
             }];



It it very easy to post your score but... not much players want to even create account on GameCenter;;

I myself in My App am using both GameCenter and Cocoslive leader boards.

Result?

2000 people in cocoslive leader board.

and 

2 people in GameCenter leader board including me.


Have a good day~ :p

[Cocoslive] How to Post score to the cocoslive server

Try the following then you will find no problem with it!

Have fun~ :p

#import "CLScoreServerPost.h"

 

-(void) postScore:(NSString*)userName{
    CLScoreServerPost *server = [[CLScoreServerPost alloc]initWithGameName:@"Mayday Timeattack" gameKey:@"game key from cocoslive"delegate:self];
    
NSMutableDictionary *dict = [NSMutableDictionarydictionaryWithCapacity:3];
[dict setObject: [NSNumber numberWithInt:(int)(totalTime*100)]forKey:@"cc_score"];
[dict setObject:userName forKey:@"cc_playername"];
    
[server updateScore:dict];
}

-(void) scorePostOk: (id) sender
{

}

-(void) scorePostFail: (id) sender
{

}