Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Unique Identifier to BPXLUUIDHandler
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  2 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
tazkeox  
View profile  
 More options Jul 26 2012, 5:46 am
From: tazkeox <jeanni...@gmail.com>
Date: Thu, 26 Jul 2012 02:46:06 -0700 (PDT)
Local: Thurs, Jul 26 2012 5:46 am
Subject: Unique Identifier to BPXLUUIDHandler

Hi everyone,

Easy APNs use the device unique identifier property to register users into
data base. But since March, Apple reject apps use this way
(because uniqueIdentifier is deprecated in iOS 5.0). Apple hasn't provided
a friendly Obj-C replacement, instead recommending CFUUIDCreate and
NSUserDefaults.

So, a good alternative is the class BPXLUUIDHandler developed by blackpixel
: https://github.com/blackpixel/BPXLUUIDHandler.

I would like to know if we can use this new unique identifier with Easy
APNs and if a update is scheduled ?

Thanks !

tazkeox.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jean-Michel Marino  
View profile  
 More options Aug 17 2012, 4:08 am
From: Jean-Michel Marino <jm.mar...@stga.fr>
Date: Fri, 17 Aug 2012 01:08:39 -0700 (PDT)
Local: Fri, Aug 17 2012 4:08 am
Subject: Re: Unique Identifier to BPXLUUIDHandler

Hi,

You can do yourself with categorie

//
//  NSString+UUID.h
//  VerbaTool
//
//  Created by Jean-Michel MARINO on 28/06/11.
//  Copyright 2011 STGA. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface NSString (NSString_UUID)
+ (NSString*)stringWithUUID;
@end

//  NSString+UUID.m
//  VerbaTool
//
//  Created by Jean-Michel MARINO on 28/06/11.
//  Copyright 2011 STGA. All rights reserved.
//

#import "NSString+UUID.h"

@implementation NSString (NSString_UUID)

+ (NSString*)stringWithUUID {
  CFUUIDRef uuidObj = CFUUIDCreate(kCFAllocatorDefault);//create a new UUID
  //get the string representation of the UUID
  NSString *uuidString = (NSString*)CFUUIDCreateString(kCFAllocatorDefault,
uuidObj);
  CFRelease(uuidObj);
  return [uuidString autorelease];

}

@end

Le jeudi 26 juillet 2012 11:46:06 UTC+2, tazkeox a écrit :


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »