iPhone pushNotification DeviceToken - "şifresini" Nasıl

1 Cevap php

I've already managed to get the devicetoken from APNs. It's type of NSData. So i want to write this deviectoken into my mysql db. I've already tried to convert it to a string without luck. That was my way:

 NSString *tokenTMP = [[NSString alloc] initWithData:devToken encoding:NSASCIIStringEncoding];

I okunabilir bir biçimde deviceToken varsa. Nasıl APNs sunucuya bir istek göndermek için php belirteci kullanılır?

thanks a lot!

1 Cevap

I NSData üzere aşağıdaki kategori eklendi

- (NSString*) stringWithHexBytes 
{
   NSMutableString *stringBuffer = [NSMutableString stringWithCapacity:([self length] * 2)];
   const unsigned char *dataBuffer = [self bytes];

   for (int i = 0; i < [self length]; ++i)
   {
       [stringBuffer appendFormat:@"%02X", (unsigned long)dataBuffer[ i ]];
   }

   return [[stringBuffer retain] autorelease];
}

Sonra ben sadece [devToken stringWithHexBytes] arayabilir; ve benim sunucuya bu kadar göndermek ve metin olarak saklayın.

Umut olur.

chris.