how to register the app to open the pdf file in my app in ipad
Posted
by uttam
on Stack Overflow
See other posts from Stack Overflow
or by uttam
Published on 2010-06-04T12:54:46Z
Indexed on
2010/06/15
6:02 UTC
Read the original article
Hit count: 242
objective-c
|ipad
i want to open the pdf file in my app from pdf page, but i am not getting any option of opening the pdf in my app.
this my info.plist file
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeName</key>
<string>PDF</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>CFBundleTypeIconFiles</key>
<string>Icon.png</string>
<key>LSItemContentTypes</key>
<string>com.neosofttech.pdf</string>
<key>LSHandlerRank</key>
<string>Owner</string>
</dict>
</array>
<key>UTExportedTypeDeclarations</key>
<array>
<dict>
<key>UTTypeConformsTo</key>
<array>
<string>public.pdf</string>
</array>
<key>UTTypeDescription</key>
<string>PDFReader File</string>
<key>UTTypeIdentifier</key>
<string>com.neosofttech.pdf</string>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<string>pdf</string>
</dict>
</dict>
pls tell me where i am wrong in this, how can i open the pdf file in my app.
© Stack Overflow or respective owner