Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8531077
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T09:24:03+00:00 2026-06-11T09:24:03+00:00

Not sure why… but my previously functional push notification registration callback is returning a

  • 0

Not sure why… but my previously functional push notification registration callback is returning a strange device token. Can anyone help make any sense of it? To my knowledge, I haven’t changed any code regarding this process.

The following code:

- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)devToken
{
    NSLog(@"device token: %@", [devToken description]);
}

Returns me this output:

device token: [32]: 8d 21:! 30:0 c3 ec 69:i f4 <--REDACTED--> 24:$ d5 26:& 64:d fb 27:' 79:y fc dc 10 ae 77:w b0 21:! 5b:[ 

Does anybody recognize this format or have any idea what is going on?

UPDATE Strangely enough, it seems that my device token is actually contained in [devToken description] if I extract every : and character following it…. and I’m guessing that [32]: is just an indicator of the length of the String. I still can’t find any reasoning for this though.

Rephrased Question: Did the [NSData description] output format change?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T09:24:04+00:00Added an answer on June 11, 2026 at 9:24 am

    You shouldn’t rely on the description method of NSData (which is actually the description method of NSObject) to provide the same results from each iOS version to the next. Apple can change what this description outputs.

    The device token is actually HEX in NSData format. You need to convert the NSData. You can use something like the following:

    - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
        {
    
            [[NSUserDefaults standardUserDefaults] setObject:[deviceToken stringWithHexBytes] forKey:@"DeviceToken"];
        }
    

    The stringWithHexBytes method is a category on NSData as follows:

    NSData+Hex.h

        @interface NSData (Hex)
    
    - (NSString *) stringWithHexBytes; 
    
    
    @end
    

    NSData+Hex.m

        #import "NSData+Hex.h"
    
    @implementation NSData (Hex)
    
    - (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];
    }
    
    @end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Not sure where to post this, but I can't find any information anywhere and
Not sure if these two can be compared, to bear with me. But what
Not sure why I can show jpg images in the simulator but not when
Not sure if this is a basic question or not but I can't seem
Not sure if the title is quite right for the question but I can't
Not sure if I can word this right but here we go. I have
Not sure if im just being stupid or something but here goes i work
Not sure how to ask this, but i'll give it a try: I have
Not sure if this is a big deal. But wondering why when the site
not sure what I'm missing here, but i keep getting the error. SQLSTATE[HY093]: Invalid

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.