I am using UUID of current device. I have to send that ID to a server for registering my device.
So I used a bit of code like:
NSString *uuidString = nil;
CFUUIDRef uuid = CFUUIDCreate(NULL);
if (uuid) {
uuidString = (NSString *)CFBridgingRelease(CFUUIDCreateString(NULL, uuid));
CFRelease(uuid);
}
And I am sending that uuidString
to the server.
My concern is that Apple will reject my app for using this UUID and sending to a server?
Please give me idea about this, it's Very important for me now.