In order to stay under the 30 MB memory limit for widgets I'd like to profile the widget in the Simulator in Instruments. However, Instruments doesn’t start the profiling session with the error message: Unable to install app with path: …
All I did in Xcode: I created a fresh scheme for the widget target and selected "Profile".
Is this supposed to work?
Update: As suggested by @lll in the comments, I tried to profile the host app, then attach Instruments to the Widget process. However, this fails as well, see screenshot. It might be because the Widget process only runs for a very short time.
In order to stay under the 30 MB memory limit for widgets I'd like to profile the widget in the Simulator in Instruments. However, Instruments doesn’t start the profiling session with the error message: Unable to install app with path: …
All I did in Xcode: I created a fresh scheme for the widget target and selected "Profile".
Is this supposed to work?
Update: As suggested by @lll in the comments, I tried to profile the host app, then attach Instruments to the Widget process. However, this fails as well, see screenshot. It might be because the Widget process only runs for a very short time.
Share Improve this question edited Feb 24 at 20:05 Ortwin Gentz asked Feb 24 at 19:26 Ortwin GentzOrtwin Gentz 54.1k24 gold badges139 silver badges219 bronze badges Recognized by Mobile Development Collective 4- You want to profile the host app and then attach to the widget process when it’s running in the Simulator. – l'L'l Commented Feb 24 at 19:36
- @lll thanks, unfortunately this doesn’t work either. See my update. – Ortwin Gentz Commented Feb 24 at 20:06
- @OrtwinGentz can you add a minimum reproducible example? – Abhinav Mathur Commented Mar 2 at 13:21
- @AbhinavMathur just use any widget sample code (developer.apple/documentation/widgetkit/…) and try to profile the widget on the Sim. – Ortwin Gentz Commented Mar 2 at 21:36
1 Answer
Reset to default 1 +50Keep the Widget Alive Longer (Debug Build Trick)
In the widget’s code (under a
#if DEBUG
check), add a small delay so Instruments has time to attach:#if DEBUG _ = DispatchSemaphore(value: 0).wait(timeout: .now() + 30) #endif
Remove this workaround before shipping.