1. What Is Proxy Mode?
Proxy mode is the backbone solution for iOS no-jailbreak automation: sign the main program and proxy program as IPAs and install them on the iPhone, pair them with the developer disk image and a license, and the central control on the PC gains complete control over the phone — clicks, swipes, input, album, node extraction and batch operations, fully covered.
Of the three iOS automation approaches (proxy / Bluetooth HID / OTG HID), it is the most feature-complete one and the standard foundation for Apple cluster control.
The role split in proxy mode
Why do you need two apps — a “main program” and a “proxy program”? Because each has its own job:
| Program | Role | Responsibility |
|---|---|---|
| Main program | Control carrier | Carries the device identifier, communicates with central control, receives script commands |
| Proxy program | Capability engine | Provides system-level automation capabilities (nodes, input, album, etc.) |
| Central control | Scheduling brain | Manages the device list, pushes scripts, aggregates execution results |
| Developer disk image | Communication bridge | Lets the PC and device establish a stable developer-service connection |
To use an analogy: the main program is the “address plate,” the proxy program is the “machine inside the house that does the work,” the disk image is the “channel” connecting the PC and the phone, and the central control is the “dispatch desk.” Miss any one of the four and the pipeline does not run.
Why proxy mode counts as no-jailbreak
The core principle of no-jailbreak is “do not modify system files; use only Apple’s open capabilities.” Proxy mode goes entirely through regular channels: programs are installed via signing (the developer channel), communication relies on the developer service (provided by Apple), and control capabilities come from system-open interfaces. It does not inject, hook or modify the system, so the pipeline usually stays usable after a system upgrade — this is its biggest advantage over old-style jailbreak solutions. Its stability comes from the word “regular.”
Typical capability list of proxy mode
What the central control can do to a device under proxy mode determines how far your business can be automated:
| Capability | Description | Typical use |
|---|---|---|
| Click / swipe | Coordinate- and element-level operations | General UI operations |
| Text input | System-level text input | Form filling, message sending |
| Screenshot / screen recording | Full-screen and regional capture | Data collection, inspection evidence |
| Node extraction | Reads the UI element structure | UI automation assertions, flow decisions |
| Album operations | Insert / read photos and videos | Asset distribution, content upload |
| Batch sync | Multi-device simultaneous execution | Cluster-control batch tasks |
Differences from Bluetooth HID / OTG HID
| Dimension | Proxy mode | Bluetooth HID / OTG HID |
|---|---|---|
| Control channel | System-level (official developer interface) | Hardware command (simulated keyboard/mouse) |
| Feature ceiling | High (node extraction, album, system-level operations) | Basic (clicks, swipes, input) |
| Risk-control footprint | Depends on signing and runtime environment | Lower (behavior close to a physical peripheral) |
| Best for | Feature-heavy, scaled cluster control | Risk-control-sensitive, lightweight automation |
Selection principle: features first → proxy; risk-control-sensitive → HID; the two can also be combined — use HID for stealthy basic operations and proxy to fill in heavy capabilities.
2. The Complete Proxy Mode Workflow (From Zero to Running)
Step 1: Prepare the Signed IPA
IPA signing is the first hurdle of proxy mode — comparison of the three approaches:
| Signing method | Validity | Cost | Best for |
|---|---|---|---|
| Personal developer signing | 7 days | Free (Apple ID) | Personal learning, short-term testing |
| Development signing | 1 year | Requires a developer account ($99/year) | Developers, small-scale automation |
| Enterprise signing | 1 year (depending on certificate) | Qualification bar or paid | Scaled cluster control, distribution |
Key point: a 7-day personal signing expires and needs re-signing/reinstalling; for long-term automated testing/cluster control, development signing or enterprise signing is recommended.
Signing practice pointers:
- Personal signing can be done with free tools, but mind the device-count limit on the same Apple ID — sign too many and they kick each other offline.
- The IPA output by the signing tool is different from the source IPA — after signing you must install the signed IPA.
- When signing in batch, generate a corresponding provisioning profile per device; do not install in batch with one shared profile, to avoid device conflicts.
- Keep backups of your signing certificates and provisioning profiles. If an enterprise-signing certificate is lost or expires, every device with it installed needs a reinstall.
Why signing is the first hurdle: iOS does not allow installing unsigned apps at will — signing is essentially Apple’s endorsement that “this app comes from a trusted developer.” The signing type determines two things: the installation validity period and the number of installable devices. Personal signing is short-lived and device-limited; enterprise signing is built for distribution, with device count and validity both better suited to batch scenarios. Pick the wrong signing method and every subsequent step has follow-on problems.
Step 2: Install the Main Program and Proxy
Use i4Tools or Xcode to install the signed main program IPA and proxy IPA on the phone, and complete first-time trust (Settings → General → VPN & Device Management → Trust).
Trust cannot be skipped: an untrusted signed app will not launch normally — the symptom is “crashes on open” or “cannot verify developer.” During batch installation, we recommend running every device through the trust flow in one pass and recording which devices are done, to avoid missed configs.
Batch-installation tip: the recommended order is “install all → trust in batches or one by one → spot-check launch.” The trust action must be done on the device side and cannot be scripted, so batching it into one stage is more efficient than installing and trusting one at a time. The spot-check standard is to randomly launch the app on one device per batch and confirm it reaches the main interface.
Step 3: Flash the Developer Disk Image
The developer disk image is the communication bridge between the phone and the PC:
- Put the image file matching the iOS version into the central control’s
bridgebin\config\DeveloperDiskImagedirectory; - Unlock the phone and trust the PC;
- In the central control, select the device → Flash Disk Image, and wait for the Disk Image column to turn green ✓.
The image version must match the phone’s iOS version, otherwise the connection is unstable or fails. When device iOS versions are inconsistent, always verify the image by version — the typical symptom of a mismatch is not “connection fails” but “connection appears to succeed, but commands fail intermittently and screenshots time out,” which is the easiest to misdiagnose as a hardware problem.
Step 4: License and Binding
Complete the device license in the central control’s License Center (cluster control licensing is counted by device/channel); once bound, the device can initiate automation operations. Devices whose license has expired are marked × and need renewal.
We recommend maintaining a license ledger: record each device’s license-expiry date and renew ahead of time. The worst thing in batch scenarios is “the whole batch stops mid-task because a license expired.”
Step 5: Start the Automation Service
After configuring the proxy program’s BundleId, select the device and start the automation service. Once started, the central control can push scripts: clicks, swipes, input, screenshots and synchronized batch execution.
How to confirm the service is really up: first, the device status in the central control changes to “automation connected”; second, do a quick operation on the device (like switching a page) and confirm the central control receives the latest screenshot or node data. Only when both signals are present is the control pipeline truly live.
Step 6: Run Your First Script
A minimal example (illustrative code; always refer to the script documentation):
// after starting automation
image.captureFullScreenNoAuto(); // take a screenshot
click(100, 200); // click
inputText('Hello'); // input text
The pass criterion: the script actually executes on the device (a screenshot file is produced, a click causes a UI change, text enters the input field) — not just “the central control says the command was dispatched.” Judge by the device-side effect.
3. Troubleshooting Common Proxy Mode Errors
| Error/symptom | Cause | Fix |
|---|---|---|
| Starting the automation service says BundleId not filled in | Proxy program package name not configured | Fill in the proxy IPA’s package name in the BundleId config |
| Disk image flashing failed | Image file missing or version mismatch | Confirm the file is in the DeveloperDiskImage directory and matches the version |
| Unstable connection/disconnects | Image not flashed or trust relationship broken | Re-flash the image; reset “Location & Privacy” on the phone and trust again |
| License shows expired | License expired | Renew/rebind in the License Center |
| Signing invalid, can’t install | Certificate expired | Re-sign and reinstall; switch to development/enterprise signing |
| Script dispatched, no response | Automation service not started or proxy BundleId wrong | First confirm service status, then verify the BundleId |
| Screenshot timeout / black screen | Image version mismatch or device locked | Verify the image version; keep the device unlocked and screen on |
Recommended troubleshooting order
When something goes wrong, follow “environment → config → service”: first check the image version and trust relationship (environment), then verify the BundleId and signing (config), and finally confirm whether the automation service is actually running (service). Most beginner problems are in the environment and config steps.
4. Common Misconceptions
- Thinking signing is enough to start running: signing is only the first step — the disk image, license, BundleId and trust relationship are all indispensable. Any broken link and the script will not run.
- Being careless about image versions: a mismatched image shows up as intermittent failures, on-and-off — harder to troubleshoot than “can’t connect at all.” Always verify by version.
- Using personal signing in production long-term: 7-day expiry with re-signing and reinstalling is unmanageable in production. Use development/enterprise signing for the long run.
- Looking only at central-control status, not device effects: “dispatched successfully” ≠ “executed successfully.” Verify by the real change on the device side.
- Judging errors by surface only: the same “unstable connection” can come from the image, trust, bandwidth or cable. Troubleshoot layer by layer instead of retrying repeatedly.
5. Who Is Proxy Mode For?
- Apple cluster control / cloud control users: proxy mode is the foundation of scaled device control — batch operations, task scheduling and synced screen mirroring all depend on it;
- Automated testing teams: real-device regression testing and compatibility testing need system-level capabilities (nodes, input, album);
- Business automation: scenarios that need text input, inserting images/videos and running complete business flows;
- Beginners learning iOS automation: full features, mature ecosystem, and plenty of troubleshooting resources — the best entry route.
Go-live advice
- In the early stage, use personal signing to get the flow working and validate the script logic — do not rush to buy enterprise signing.
- Once the script logic is stable, switch to development/enterprise signing for formal deployment.
- Before scaling, run a 24-hour trial on 1/5 of the target device count; confirm stability before going full-scale.
Deployment checklist (verify before going live)
- Main program and proxy IPA are signed, installed and trusted on the devices;
- The disk image is flashed and its version matches each device’s iOS;
- Devices are bound in the License Center, and the license validity covers the usage period;
- The BundleId (main program / proxy) is configured and saved;
- The automation service is started and verified end-to-end with a real business script;
- In batch scenarios, multi-device concurrency stability is verified (see the load-test method in the device-capacity article);
- A signing-validity and license-expiry ledger is in place, with advance-renewal reminders set.
This checklist also applies to regression checks after every signing change or system upgrade — change the environment once, run the checklist once — it saves a lot of late-night troubleshooting.
6. FAQ
Q1: What are the prerequisites for proxy mode? A: A central control PC, an iPhone, a signed IPA (main program + proxy), a matching developer disk image and a license — all five are required; once configured, you can start the automation service.
Q2: What are the ways to sign an IPA? A: Personal signing (7 days, free), development signing (1 year), enterprise signing (1 year). The latter two are recommended for long-term use.
Q3: What is a developer disk image? Do I have to flash it? A: It’s the communication bridge between the phone and the PC; it must be flashed for cluster control/batch scenarios, and the version must match the iOS version.
Q4: How long to get the first script running? A: 10–20 minutes once familiar; the first time is mostly spent on signing and disk image matching.
Q5: Can proxy mode batch-control devices? A: Yes — it’s the backbone solution for Apple cluster control, supporting multi-device sync and batch script push.
Q6: What happens when a personal signing expires after 7 days? A: Re-sign and reinstall. Acceptable during learning; for long-term use, upgrade to development/enterprise signing to skip renewal maintenance.
Q7: How do I troubleshoot unstable connections or disconnects? A: Check layer by layer in the order “image version → trust relationship → cable power → bus bandwidth.”
Q8: How do I choose between proxy and Bluetooth HID / OTG HID? A: Features first → proxy; risk-control-sensitive → HID; the two can be combined.
Q9: What should I do about a BundleId error? A: Fill in the real proxy IPA package name in the central control config and save it. Get the package name from i4Tools’ “Copy Identifier”.
About EasyClick: A phone automation AI-agent platform covering Android no-root, iOS no-jailbreak (proxy / Bluetooth HID / OTG HID) and HarmonyOS Next, offering script development, Apple cluster control, local central control & mirroring, and cloud control systems. → Explore all products
Ready to build it for real?
Every approach in this article can be built on the EasyClick phone automation platform — full documentation, developer tools and cluster/cloud-control products, free to try.