你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iphone開發:獲取設備型號

iphone開發:獲取設備型號

編輯:IOS開發綜合

+ (NSString *)getPhoneModel
{
    size_t size;
   
    // get the length of machine name
    sysctlbyname("hw.machine", NULL, &size, NULL, 0);
   
    // get machine name
    char *machine = (char*)malloc(size);
    sysctlbyname("hw.machine", machine, &size, NULL, 0);
    NSString *platform = [NSString stringWithCString:machine encoding:NSASCIIStringEncoding];
    free(machine);
   
    return platform;
}

 

 

摘自 雲懷空-abel

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved