I have a WkWebView that I use to run a text editor. It works fine with scribble, and I can enter text with the stylus.
However, I would like to disable scrolling with the stylus while scribble is enabled (otherwise, the view moves around when the user writes). But I'd like to keep the scrolling ability if the user is not using scribble.
Hence the question: is there a way to know when scribble has been enabled, or if it's been enabled for this specific WkWebView?
It's actually a webView, using SwiftUI; I don't know if it changes something.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Created
Hello,
I have an iOS app with a lot of embedded frameworks. It works well when I start it from Xcode, it works well once it is on the AppStore or in TestFlight.
My only problem is when uploading it using Xcode 13. At the "Processing symbols for ....framework" stage, when reaching a specific framework, it keeps going forever (I've tried letting it run for a night, and it did not move).
I can upload with Xcode 12 without problems, but not with any version of Xcode 13 or 14. Since it keeps going forever, I do not have an error message that could help me in identifying the issue.
The issue seems to be with a specific framework, but I cannot identify anything that this framework has that is different from the other frameworks (they've all been compiled from C code, using a Makefile and the same CFLAGS and LDFLAGS options).
I couldn't find any similar issues on the forum. Do any of you guys have a suggestion on how to fix the issue?
Hi,
I have an app that provides Shortcut actions. One of these actions can take as input an array of String, so I checked the "Supports multiple values" checkbox in Intents definition.
Since iOS 15, I have this strange behaviour when creating a new Shortcut:
if the action is the first to be added, I can add new strings as I want.
if there is a node present before and the array is empty, then adding a string will crash the Shortcut app.
(if there is a node present and the array is not empty, then I can add new strings, and even remove all the strings I added before and replace them)
Running the Intents through Xcode debugger tells me the crash appens when initializing a multiple value parameter:
2021-10-16 09:26:37.209264+0200 Shortcuts[2431:41261] *** Assertion failure in -[WFMultipleValueParameterState initWithValue:], WFVariableSubstitutableParameterState.m:49
2021-10-16 09:26:37.209968+0200 Shortcuts[2431:41261] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: value'
Am I the only one experiencing this? (a quick search through the forum says yes) How can I fix it?