获取手机设备信息

NSString *content=[[NSString alloc]

                       initWithFormat:

                       @"unique id: %@ \nlocalized model: %@ \nsystem version: %@ \nsystem name: %@ \nmodel: %@",

                       [[UIDevice currentDevice] uniqueIdentifier],

                       [[UIDevice currentDevice] localizedModel],

                       [[UIDevice currentDevice] systemVersion],

                       [[UIDevice currentDevice] systemName],

                       [[UIDevice currentDevice] model]];

    NSLog(@"%@",content);

你可能感兴趣的:(获取手机设备信息)