UIDevice *currentDevice = [UIDevice currentDevice]; NSString *strName = currentDevice.name; NSString *strModel = currentDevice.model; NSString *strLocalizedModel = currentDevice.localizedModel; NSString *strSystemName = currentDevice.systemName; NSString *strSystemVersion = currentDevice.systemVersion; NSString *strUUIDString = currentDevice.identifierForVendor.UUIDString;
|