Remote access of an iOS app - ios

I want to get remote access of my iOS app running on one iPad in another iPad. Is there a way in iOS SDK to achieve this?
Any help would be highly appreciated. Thanks

No, there's not. You can mirror the screen to another device using AirPlay, but there is no way to "drive" the device remotely. (There's an app called "Reflector" that lets you mirror you iOS device onto your Mac, but it's view only.)

Related

Intelllij Idea Not able to detect My iOS Device

I created a flutter app and it is not detecting my iPad.
In the image, you can see it is showing <no devices>.
My iPad uses iOS 12.4.8.
But when I connect it to my android 10 phone it can detect it.
Please Help!
You need a mac to be able to debug or run your app on an iphone or ipad.

How can i trigger my iphone application to launch from my mac app

I want to launch my app on the device (if App available) using the USB\Wifi\Bluetooth connection from my mac app.
How can I achieve this functionality
That is NOT possible. You can't do it using any public API. Though i am not aware of any private API that facilitate this types of functionality.
This is iPad control Mac's touch bar demo:
TouchBarDemoApp Allows you to use your macOS Touch Bar from an iPad (through USB connection) or on-screen by pressing the Fn-key.
Mac control iPhone:
iTunes Mac app can get the iPhone's screenshot and edit iPhone's apps.
Xcode can launch iPhone's apps when you debug ShareExtension.
So I think there are some methods to achieve your function. But I don't how to achieve. Maybe its private.
As already posted, you cannot directly launch an app.
But you can make your App show up on the lock screen as well as the task switcher so it can be opened with one click. This feature is called Handoff.
Here is the usage description for the end user and this is the programming guide on how to implement it.

Access application while in lock screen in iOS

Is there any way to detect the shake when the application is in back ground in iOS ? Actually in my application i need access my application when the device is in lock screen to call some web services. Is there any way to do this to aces my application while the device is in lock screen in iOS?
Simple answer NO there is no way of detecting shake in background mode sorry.
Unfortunately this isn't possible in iOS 7 are lower.

Enable/Disable camera app programmatically

Is there a way to programmatically restrict camera access on iPhone 4S 5.0.1?
I am building a simple app with a button to enable/disable shooting with the camera.
I believe it should work in the similar way as the restrictions work in Settings app.
I am not going to deploy it, so I do not mind about Apple's approve.
Thanks!
there is no such a policy based programming like android in iphone to disable the camera. its possible only in rooted iphones.
I think the only option will be with MDM solutions

AirPlay Mirroring iPhone to Mac OS / using UIWebView + AirPlay

I need to live-demo a Mobile Safari browser app (iOS 5, iPhone 4S) on my Macbook and was wondering the best way to do this?
One way I thought might be possible would be using AirPlay Mirroring, but there doesn't seem to be any Mac OS apps capable of showing my iPhone screen mirrored.
I am an (beginner) iOS developer and wondered if there was anyway I could knock up a basic app with a UIWebView in it to somehow stream the contents of the web page and my interactions with it to my Mac.
Any thoughts?
EDIT: Yes I know I could use the iPhone Simulator, but I need to interact with it on the handset using the mobile phone network.
The situation has changed since this was asked.
AirServer (AirServerApp.com) and Reflection (ReflectionApp.com) both support AirPlay mirroring. Here's an article comparing them:
http://www.macstories.net/reviews/mirroring-multiple-ios-devices-to-a-mac-comparing-airserver-and-reflection/
Since your device (iPhone 4s) supports video mirroring via AirPlay, then you should be able to use AirServer to enable mirroring to your Mac.
Update: As pointed out by Marc Surman, AirServer does not support mirroring, rendering this answer incorrect. Thanks for playing.
Mirroring uses FairPlay encryption, which is why AirServer and similar applications can't do mirroring.
You CAN, however, fake this using AirplayKit:
https://github.com/rothacr/AirplayKit
The iOS demo in that repo actually does a simple mirror by sending an image of your screen to the airplay device using a timer. It would probably work just fine for a demo, and should work with AirServer.

Resources