Open ( App Store ) programmatically - app-store

I want open AppStore from Inside my app programmatically
( without close my app )
How can I do this in iOS 8 ,, iOS 9
Thanks in advance

There is the SKStoreProductView where you can open a specific product page from the App Store without the user actually leaving your app.
Find the official docs here: https://developer.apple.com/library/ios/documentation/StoreKit/Reference/SKITunesProductViewController_Ref/

Related

Switching from View 1 to Bluetooth settings..can't possible?

I am facing problem in switching from view 1 to Bluetooth settings i.e in view 1 i have given 1 Button..on clicking on that button i want to switch to view 2(Bluetooth settings)..but it can't be possible in iPhone..since we can't access the default settings of iPhone..for that we have to create the application preferences..
Q.1 Is there any way to access the default settings of Bluetooth in iPhone?
Q.2 Is there any official link where it can be mention that we can't access the default settings?
I want suggestion..please help..
Thanks in advance
Apps cannot open the settings application to a specific screen. The reason that apps like MapMyFitness open preferences is because they ask for permission to use Bluetooth Low Energy. Asking for permission is managed by CBCentralManager on first usage.
These popups are shown automatically by the system framework. The message can be customized using the purpose property for location services, that is not possible in case of Bluetooth.
No private API was used for this, so there's no reason for the app to be rejected.
Credit goes to this bellow SO question
how some apps can open setting app programmatically within their app
que 2.
At previous we are opening Setting Page from app Using Bellow line of Code:-
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:#"prefs://"]];
But now upto ios5.0 it was working after that this one depreciated. and Till now Apple not providing the URL Schema for achieving this one in newer versions.
Links of similar question and it's Answer:-
Call the official *Settings* app from my app on iPhone
iPhone- Open Settings from my application iOS 6
is it possible to open Settings App using openURL?
Programmatically opening the settings app (iPhone)
How can I open the Settings app when the user presses a button?
iPhone: Opening Application Preferences Panel From App
Open UIPickerView by clicking on an entry in the app's preferences - How to?
Open the Settings app?

How to enable file sharing in iPhone app using iPhone sdk [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
How to enable file sharing for my app?
How can i enable file sharing functionality in iPhone app. I am very curious about this to know because when i connect my iPhone with iTunes then it show me three apps. One is Skype and second one is bump and third one is my own app. My app is about augmented reality and show some videos and images on specific markers, also i did social sharing and APNS work and flurry integration that all major working in my app and I did nothing which enable this functionality but why and how this happen. Kindly let me know. This will be great for me. Thanks.
You should Enable UIFileSharingEnabled in the application plist file, Keep this value to YES like this then your application can share data of your application documents
There is an option in {projectname}-Info.plist named "Application supports iTunes file sharing".
Your app will appear in iTunes File Sharing if the UIFileSharingEnabled key is set in its Info.plist. (This appears in the Xcode editor as "Application supports iTunes file sharing ".) If this is enabled in your project and you're not sure how, either you accidentally clicked something for this in Xcode, or you're working from a project template in which it's pre-set.

How to open VRML(*.wrl ) file in iOS application

I have VRML(*.wrl ) file & I want to open that file inside my iOS application. Is there any way to do this i.e. any SDK, or other way. Thanks in advance
Cortona3D is a very good viewer for .wrl files:
But if you want to make your own app and don't mind the steep price and sub-par documentation, you could use BS Contact iOS instead (although no app that uses this viewer ever reached the App Store).

go to AppStore update screen from an iOS application

Is there a URL I can launch from the app that will take the user to the "Updates" tab in the AppStore application on an iOS device?
I'm not sure if it's possible to link directly to an update. I've found once an advice to replace "viewSoftware" to "viewSoftwareUpdate" on:
https://devforums.apple.com/message/139548#139548
but since link for "phobos" is no longer used it might not work any more
Here's the one we use for our apps (where "id" is the id for your app):
itms-apps://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftwareUpdate?id=438596432&mt=8
It mostly works. On an iPhone & iPod it goes right to the Update screen. On an iPad it goes to the store and shows an obscure error message. I filed that as a bug with Apple a few months ago.

iOS - open another application that exists on the phone?

Is it possible to open another application that exists on the phone from my app?
Is it possible to check for availablility of an external application?
The other application is also my app.
You can do this with the iOS URL handling features-- for example UIApplication canOpenURL:.