我的应用中有这部分代码
(void) trackWithCategory:(NSString*)category withAction:(NSString*)action withValue:(float)value
{
AppController *ac = (AppController*) [UIApplication sharedApplication].delegate;
BOOL result = [ac.tracker trackEventWithCategory:category
withAction:action
withLabel:[UIDevice currentDevice].uniqueIdentifier
withValue:[NSNumber numberWithInt:(int)(value+0.5)]];
if (!result)
NSLog(@"Google Analytics track event failed");
}
当我试图构建它时,它给了我关于这一行的错误:
withLabel:[UIDevice currentDevice].uniqueIdentifier
它
是正确的,uniqueidentifier
首先在 ios 5 中被弃用
请问我该如何解决?我怎样才能以不同的方式写它,这样就可以了..?