lachie / cheepcheep

my very own twitter client

This URL has Read+Write access

cheepcheep / NSString+UUID.m
100644 28 lines (19 sloc) 0.482 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// NSString+UUID.m
// MGTwitterEngine
//
// Created by Matt Gemmell on 16/09/2007.
// Copyright 2007 Magic Aubergine.
//
 
#import "NSString+UUID.h"
 
 
@implementation NSString (UUID)
 
 
+ (NSString*)stringWithNewUUID
{
    // Create a new UUID
    CFUUIDRef uuidObj = CFUUIDCreate(nil);
    
    // Get the string representation of the UUID
    NSString *newUUID = (NSString*)CFUUIDCreateString(nil, uuidObj);
    CFRelease(uuidObj);
    return [newUUID autorelease];
}
 
 
@end