1. 程式人生 > >iOS 獲取當前app的名稱和版本號

iOS 獲取當前app的名稱和版本號

NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];

CFShow(infoDictionary);

// app名稱

NSString *app_Name = [infoDictionary objectForKey:@"CFBundleDisplayName"];

// app版本

NSString *app_Version = [infoDictionary objectForKey:@"CFBundleShortVersionString"];

// app build版本

NSString *app_build = [infoDictionary objectForKey:@"CFBundleVersion"];

//手機序列號

NSString* identifierNumber = [[UIDevice currentDevice] uniqueIdentifier];

NSLog(@"手機序列號: %@",identifierNumber);

//手機別名: 使用者定義的名稱

NSString* userPhoneName = [[UIDevice currentDevice] name];

NSLog(@"手機別名: %@", userPhoneName);

//裝置名稱

NSString* deviceName = [[UIDevice currentDevice] systemName];

NSLog(@"裝置名稱: %@",deviceName );

//手機系統版本

NSString* phoneVersion = [[UIDevice currentDevice] systemVersion];

NSLog(@"手機系統版本: %@", phoneVersion);

//手機型號

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);

// 當前應用軟體版本  比如:1.0.1

NSString *appCurVersion = [infoDictionary objectForKey:@"CFBundleShortVersionString"];

NSLog(@"當前應用軟體版本:%@",appCurVersion);

// 當前應用版本號碼  int型別

NSString *appCurVersionNum = [infoDictionary objectForKey:@"CFBundleVersion"];

NSLog(@"當前應用版本號碼:%@",appCurVersionNum);

君凱商聯網-iOS-字唐名僧

相關推薦

ios當前APP名稱版本

NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]; CFShow(infoDictionary); // app名稱 NSString *app_Name

iOS獲取當前裝置ID、版本、build

廢話不多說、直接上程式碼 //獲取裝置ID NSString *identifierForVendor = [[UIDevice currentDevice].identifierForVendor

iOS獲取手機型號、iOS獲取當前app名稱版本

NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]; CFShow(infoDictionary); // app名稱 NSString *app_Name = [infoDi

iOS 獲取當前app名稱版本

NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]; CFShow(infoDictionary); // a

iOS獲取當前app的裝置名稱版本等內容

NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]; CFShow(infoDictionary); /

iOS 獲取程式~專案app名稱版本、build版本

//聯絡人:石虎 QQ:1224614774 暱稱:嗡嘛呢叭咪哄 /**  1.圖形顯示  2.程式碼實現  3.下載 demo  */ 一、圖形展示 圖1: 圖2: 二、程式碼實現 // //  ViewController.m // 

應用程式的名稱版本等詳細資訊的獲取

應用程式的名稱和版本號等資訊都儲存在mainBundle的一個字典中,用下面程式碼可以取出來。 NSDictionary* infoDict =[[NSBundle mainBundle] infoDictionary]; NSString* version

獲取瀏覽器的名稱以及版本

(function (window, $, undefined) { // 定義 通用工具方法 擴充套件物件基元 coreUtil = function () { return Object.apply(this, arguments); }, // 定義 jQuery 擴充套件物件基元 c

iOS 獲取當前時間戳時間

        NSDate *senddate = [NSDatedate]; NSLog(@"date1時間戳 = %ld",time(NULL));         NSStrin

在程式中讀取ANDROID應用的程式名稱版本

在ANDROID應用中,我們經常會需要在應用的介紹和說明中顯示程式名稱和版本號。當然,我們可以用硬編碼的方式在程式碼中直接寫進去,但這樣每一次版本升級的時候都需要去更改,勢必不是很方便。那麼,怎麼讀取ANDROID應用的程式名稱和版本號呢? 其實很簡單,ANDROID系統

python 獲取當前函式名

sys._getframe([depth]) Return a frame object from the call stack. If optional integer depth is given, return the frame object that many

python語言 python列印當前函式名稱示例

示例demo: #!/usr/bin/env python import os import sys import inspect import logging from datetime import * def get_head_info():      try:   

tp5 獲取當前控制器名稱方法名稱

//獲取當前控制器名稱 //獲取當前控制器名稱 $controller=request()->controller(); $this->assign('controller',$controller); /

安卓獲取當前app版本(versionCode)版本名稱(versionName)

/** * 獲取當前app version code */ public static long getAppVersionCode(Context context) { long appVersionCode = 0; tr

版本更新,獲取當前app版本版本名稱.

versionCode:用於本地app和後臺的app提供的版本進行對比,用於更新功能實現。versionName:用於展現給客戶看的版本資訊。 1.app更新功能; 2.app靜默下載、靜默安裝; 3.

android獲取當前軟件版本版本名稱

.get 軟件 版本 exceptio ctx ica blog found 版本號 <span style="font-size:18px;">/** * 獲取本地軟件版本號 */ public stati

iOS app版本更新版本的比較

//獲取手機程式的版本號 NSString *ver = [[[NSBundlemainBundle]infoDictionary] objectForKey:@"CFBundleShortVer

SVN 命令 獲取指定路徑的最新版本 ( Revision Last Changed Rev 區別)

> svn --username 'userName' --password 'password' info Https://IP:port/svn/app/mainapp/MyPr

如何在WindowsLinux下獲取當前執行緒的ID

Linux下獲取當前執行緒ID號函式: pthread_t pthread_self(); 返回:當前執行緒的ID號 pthread_t 資料型別的定義如下: typedef unsigned long int pthread_t; sizeof(pthread_t) =

關於上傳的app的標識號版本

修改版本號可以在manifest檔案中修改Android:versionCode和Android:VersionName屬性 修改標識號則是在build.gradle中修改defaultConfig下的versionCode和versionName屬性 如果在上傳app之