LoginSignup
9
9

More than 5 years have passed since last update.

【iOS】NSUUIDの型変換

Last updated at Posted at 2015-01-08

Objective-C

NSUUID *uuid = [NSUUID UUID];

// NSUUID -> NSString変換
NSString *uuidStr = uuid.UUIDString;

// NSString -> NSUUID変換
NSUUID *convertedUuid = [[NSUUID alloc] initWithUUIDString:uuidStr];

Swift

let uuid:NSUUID = NSUUID()

// NSUUID -> NSString変換
let uuidStr: NSString = uuid.UUIDString

// NSString -> NSUUID変換
let convertedUuid:NSUUID = NSUUID(UUIDString: uuidStr)!

おまけ

UUIDの生成

ターミナルで実行:

$ uuidgen
9
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
9