This question already has answers here:
How can I open URLs in watchOS?
(2 answers)
Closed last month.
How can I open a browser on the iPhone from WatchKit App, without a companion app on the iPhone?
Something like this:
UIApplication.shared.open(URL(string:"yourCustomLink")
This not possible, a companion iOS app is required for this.
Related
This question already has answers here:
How to reverse engineer an Xcode project from an app?
(2 answers)
Closed 3 years ago.
Recently, I accidentally overwrote my iOS app on my Mac. But I uploaded to Apple Connect for testing. Is there a way to retrieve the files of my app from there?
No. What you uploaded to App Store Connect is compiled code. What you are looking for is your source code (text).
This question already has answers here:
How can I check programmatically that list of applications are installed or not in iPhone
(2 answers)
Closed 4 years ago.
I'm doing an iOS app and I want to get some data about my users.
Is it possible to get information about another apps on user's phone? At list name of all apps on iphone, or last launching time?
Answered here: Check for installed apps on iOS 9 and 10
HackingwithSwift.com also has a good article on this: How to check whether your other apps are installed
The HWS video on this warns that "you may have to provide an explanation to the review team if you query too many apps or apps that aren't yours"
This question already has answers here:
How to get information about free memory and running processes in an App Store approved app? (Yes, there is one!)
(2 answers)
Closed 5 years ago.
Is there a way to get the running apps info or the action of openning the app in IOS? There is a way to do that in android with getRunningTasks, maybe there is a way to do that in ios?
At last in non-jailbroken iOS there is no such possibility. The reason is to protect users privacy - app should not know about other apps that are installed on user device (otherwise it could eg. spot business rivals app).
This question already has answers here:
Will iOS apps that are just UIWebView's be rejected? [closed]
(2 answers)
Closed 6 years ago.
Can Apple reject my application if it run HTML5 games in WebView?
I develop native app. One screen will contain list with data retrieved from server. Any item run HTML5 game in IOS WebView. I reed guidelines but i`m not sure in this case.
Maybe somebody can provide any published examples with the same behavior?
I am 100% sure your app will be rejected, as apple say here in point no. 2.12. And also check link1 and link2. There are lots of apps which will rejected because they are using webView to show HTML or simply load dynamic urls.
If you want your app will pass, you need to add some component natively means mix of native and webView app can be pass. I have develop an app with mix of native and webView and that was passed without any issue.
This question already has answers here:
Finding list of installed apps on iphone
(7 answers)
Closed 6 years ago.
I have to fetch all music apps name contains in device (like google play,gaana,saavan) and has to show all name in my app. I search a lot but not able to find a solution.Please help me if anyone has an idea.
Is there any way to fetch downloaded music files or list from iTunes store?
iOS applications are installed in Sandboxed environment, meaning that they cannot do anything outside their own application. It may work on Jailbroken devices!
More details given in this link,