Posts

Post not yet marked as solved
4 Replies
I am running Xcode 15 on a 2017 MacBook with Ventura and it too is ridiculously slow. What happened Apple?
Post not yet marked as solved
5 Replies
Second attempt to find out the resolution of this issue. Has this ever been solved yet? I really need this for my apps also.
Post marked as solved
3 Replies
Apparently, it needs to be like this now, with each being embedded in a separate ToolbarItem including Spacer() - (found this while searching UIToolbar in SwiftUI): .toolbar {                 ToolbarItem(placement: .bottomBar) {                                         Button(action: {}, label: {                         Text("One")                     })                 }                 ToolbarItem(placement: .bottomBar) {                     Spacer()                 }                 ToolbarItem(placement: .bottomBar) {                                             Button(action: {}, label: {                         Text("Two")                     })                 }                 ToolbarItem(placement: .bottomBar) {                     Spacer()                 }                 ToolbarItem(placement: .bottomBar) {                                             Button(action: {}, label: {                         Text("Three")                     })                                   }             }
Post not yet marked as solved
2 Replies
I need to know how to do this too!
Post not yet marked as solved
4 Replies
how can we enable webview gestures?wkWebView.allowsBackForwardNavigationGestures = true does not appear to work.
Post marked as solved
17 Replies
This helped me!https://www.youtube.com/watch?v=h0SgafWwoh8
Post marked as solved
4 Replies
That gives error:Cannot convert value of type 'Binding<String?>' to expected argument type 'Binding<String>'
Post marked as solved
5 Replies
What I am currently doing is this:while ( scanner.scanUpTo("|", into: &sid) && scanner.scanUpTo("|", into: &v1) && scanner.scanUpTo("|", into: &v2) && scanner.scanUpTo("|", into: &v3) && scanner.scanUpTo("|", into: &v4) && scanner.scanUpTo("\n", into: &v5)) { // Process v1 thru v5 }This is much more elegant and less complicated than the alternative, right? Is there an easier way to do this?