Can Apple reject my application if it open HTML5 games in WebView? [duplicate] - ios

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.

Related

Swift: Is there a way to get the running apps in IOS? [duplicate]

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

How to fetch all music apps name contains in device [duplicate]

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,

Is it possible to answer a call programmatically in iOS? [duplicate]

This question already has an answer here:
Programmatically answer an incoming phone call on iPhone
(1 answer)
Closed 9 years ago.
Is it possible to programmatically answer a call in iPhone? I have already googled about this and found that iOS SDK does not support such feature. But I found an answering machine app in Appstore.
https://itunes.apple.com/in/app/prank-answering-machine-free/id508457142?mt=8
Please help me out.
No this is not possible, the iOS SDK does not allow any interaction with the phone.app.
Also the app you have found is a prank app, one that you start if you receive a call and the play back one the messages from the app.
No, that is not possible. The CoreTelephony framework lets your application receive notifications if there is any change in the call state, but there is no way to answer it.
The app that you mentioned does not say anything about answering a call, from what I can see.
I would say it depends. If you want to make a app and publish it in app store, its not possible. However if you want don't want to publish on app store and willing to use private api, then its possible. Refer this answer.

Get webb application to app store [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Does Apple reject “mobile web shell” applications?
i am wondering if it is possible to make a mobile webpage and than making a IOS app in xcode just having a full screen browser view loading the mobile webpage.
I heard someone saying that apple does not allow apps that one includes a webpage, is this true?
Yes this is true. http://developer.apple.com/appstore/resources/approval/guidelines.html
2.12 Apps that are not very useful, are simply web sites bundled as apps, or do not provide any lasting entertainment value may be
rejected
Yes, your application will most likely be reject for this.
I recommend taking your existing files and using something like http://phonegap.com/ and deploy your web application to multiple stores. This works because your assets are baked into the application.

How to detect an iOS version? [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
How can we programmatically detect which iOS version is device running on?
We have a site which has a registration form. In this form we have a file upload button. As you already know when someone access our site via iOS devices they can't upload a file because iOS doesn't support file upload via safari. Now we found out iOS6 enables users to upload a photo via safari. Now the question is we don't know how many people will update to iOS6. So how can we detect which version of iOS a visitor is running and then show them a warning or a popup message ?
We want to detect if the site is accessed by iOS5.1 or less and show a popup message saying "Your software version does not support file upload. Please update to iOS 6 or download our app to upload your image"
Any help ? thank you.
http://zsprawl.com/iOS/2012/05/check-the-ios-version-with-javascript/
There is a tutorial there, it was the most recent i could find (may 2012) as i know many methods dont work on newer IOS, worth a shot though! :)

Resources