註冊自己的App到iOS中

來源:互聯網
上載者:User

標籤:

    將自己的App註冊到iOS,就要用到iOS文檔處裡的功能,我們註冊我們的程式用來處理我們自己特殊的文件類型。

首先,我們要在Info.plist檔案中設定Document types

<key>CFBundleDocumentTypes</key><array><dict><key>CFBundleTypeName</key><string>myapp</string><key>LSHandlerRank</key><string>Default</string><key>LSItemContentTypes</key><array><string>com.customApp.myApp</string></array></dict></array>

屬性說明:

CFBundleTypeName:文檔的類型名稱,這裡我將分享的檔案壓縮打包成*.myapp格式

LSHandlerRank:這裡指是否擁有子文檔,這裡我設定為default

LSItemContentTypes:這裡填寫你App的bundle identifier即可

然後我們來定義UTI:

<key>UTExportedTypeDeclarations</key><array><dict><key>UTTypeConformsTo</key><array><string></string></array><key>UTTypeIdentifier</key><string>com.customApp.myApp</string><key>UTTypeTagSpecification</key><dict><key>public.filename-extension</key><string>myapp</string></dict></dict></array>
UTTypeIdentifier:這裡填寫自己App的 bundle identifier

public.filename-extension:這裡填寫你壓縮包的副檔名。

OK,現在我們的應用就會出現在開啟檔案的列表中。知道了如何註冊,那麼如何處理擷取到的檔案呢?很簡單,在-application:didFinishLaunchingWithOptions:方法中,添加如下的代碼:

NSURL *url = (NSURL *)[launchOptions valueForKey:UIApplicationLaunchOptionsURLKey];
這個url就是你接收到檔案的url。現在自己就可以在自己的App中輕鬆的處理自己自訂的類型檔案了。

參考資料:

Email Tutorial for iOS: How To Import and Export App Data Via Email in your iOS App

How do I associate file types with an iPhone application?

註冊自己的App到iOS中

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.