Hi,
My pkg(installer) is pretty huge(over 5G bytes) because of the resources (images/wavs). The resources are almost 2G bytes.
Also we have 2 different packages like a full installer and an updater in which most of the bundles are shared.
It takes huge time to get notarized because of the context above. Is there any economical way to be notarized? For instance, uploading a zip contains the bundles and package them as a pkg after getting notarized. If it is possible, I could reduce the traffic and time.
Thanks,
Kaz
Post
Replies
Boosts
Views
Activity
Hi,
I am crafting Mac-Catalyst app. I wanted to attach my app to Instruments app to profile the status of my app. (Leaks was the target)
But Instruments showed an error below and next worked.
Okay, This could fix by disabling SIP, but I do not want to do it.This is my application so that I think I could modify some items in the entitlements and attach the instruments without disabling SIP.
Error message:
Error: Target process is marked restricted and cannot be traced while System Integrity Protection is enabled.
Any helps are welcome.
Kaz
I would like to catch the key-in event with pressesBegan. But any normal text events does not reach pressesBegan.
Instead, I get this message in the debugger screen : "Warning: insertText reached".
I implemented UIKeyInput protocol at my UIViewController and seemed that I could catch the events via insertText.
But not possible to handle key up/down events via this protocol.
Is there any best practice to handle normal text key-in/out events?