iOS獲取設備信息的方法

    //手機序列號  
    NSString* identifierNumber = [[UIDevice currentDevice] uniqueIdentifier]; 
    NSLog(@"手機序列號: %@",identifierNumber); 
    //手機別名: 用戶定義的名稱  
    NSString* userPhoneName = [[UIDevice currentDevice] name]; 
    NSLog(@"手機別名: %@", userPhoneName); 
    //設備名稱  
    NSString* deviceName = [[UIDevice currentDevice] systemName]; 
    NSLog(@"設備名稱: %@",deviceName ); 
    //手機型號  
    NSString* phoneModel = [[UIDevice currentDevice] model]; 
    NSLog(@"手機型號: %@",phoneModel ); 
    //地方型號  (國際化區域名稱)  
    NSString* localPhoneModel = [[UIDevice currentDevice] localizedModel]; 
    NSLog(@"國際化區域名稱: %@",localPhoneModel ); 
     
    NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]; 
    // 當前應用名稱  
    NSString *appCurName = [infoDictionary objectForKey:@"CFBundleDisplayName"]; 
    NSLog(@"當前應用名稱:%@",appCurName); 

    //手機系統版本  
    NSString* phoneVersion = [[UIDevice currentDevice] systemVersion]; 
    NSLog(@"手機系統版本: %@", phoneVersion);
 

    // 當前應用軟件版本   
    NSString *appCurVersion = [infoDictionary objectForKey:@"CFBundleShortVersionString"]; 
    NSLog(@"當前應用軟件版本:%@",appCurVersion); 



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章