单军华
2018-07-12 9308577aa579e5e6e7723830ca9c38cac1e62988
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  UIDevice+FCUUID.m
//
//  Created by Fabio Caccamo on 19/11/15.
//  Copyright © 2015 Fabio Caccamo. All rights reserved.
//
 
#import "UIDevice+FCUUID.h"
 
@implementation UIDevice (FCUUID)
 
-(NSString *)uuid
{
    return [FCUUID uuidForDevice];
}
 
@end