-
Content Count
1491 -
Joined
-
Last visited
-
Days Won
36
Everything posted by Dave Nottage
-
I have a repo containing some ChatGPT "conversations" which might be of interest, and have just added this one: https://github.com/DelphiWorlds/HowTo/blob/main/ChatGPTConversations/DetectClonedApp.md The Delphi code is my conversion of the Java code. As per the warning here, always verify anything coming from ChatGPT, or me, for that matter 🙂
-
Debugging is currently not working from Delphi for iOS 17 devices. There is yet to be an ETA for a fix.
-
Then I stand corrected 🙂 Not sure if there's anything for Delphi. Someone else might be able to chime in
-
No idea in that case, sorry.
-
If your device has iOS 17, debugging with Delphi is currently not working. There's yet to be an ETA on a fix for it
-
Where the user can select multiple parts of text I suspect is wishful thinking. There's bound to be edits/memos where text can appear to be selected in multiple locations, i.e. searched text is highlighted.
-
Unable to select negative numbers on virtual keyboard
Dave Nottage replied to bzwirs's topic in Cross-platform
Does Woll2Woll have their own edit in their grid? As I say, the standard TEdit in FMX works here. -
Unable to select negative numbers on virtual keyboard
Dave Nottage replied to bzwirs's topic in Cross-platform
Are you using a standard TEdit from FMX? Using NumberPad works here. (Delphi 12, Pixel 6 Pro, Android 14) -
It's been available for Delphi 12 for some time. The "latest" is always located here.
-
If there's a way to do it in Java or Kotlin, there's usually a way to do it in Delphi. Do you have any links discussing why this is a problem, and potential solutions?
-
Delphi 12 can not find /usr/lib/swift/libswiftUIKit.dylib
Dave Nottage replied to kabiri's topic in Cross-platform
It should be helpful if you have an older Mac and are unable to update macOS/Xcode. The link I posted is for the exact moment that @Ian Barker discusses how to solve the macOS/Xcode upgrade issue. -
Delphi 12 can not find /usr/lib/swift/libswiftUIKit.dylib
Dave Nottage replied to kabiri's topic in Cross-platform
You might need to provide more information, then - perhaps a test project that reproduces the error? -
Delphi 12 can not find /usr/lib/swift/libswiftUIKit.dylib
Dave Nottage replied to kabiri's topic in Cross-platform
I have just noticed you have a version of Xcode that may not even have the Swift support mentioned earlier. Delphi 12 is able to use Xcode 15.1, so I suggest updating. If your Mac is too old to update macOS/Xcode, I suggest watching this part of this video. -
Delphi 12 can not find /usr/lib/swift/libswiftUIKit.dylib
Dave Nottage replied to kabiri's topic in Cross-platform
There's some instructions for adding Swift support, here. You will also need to ensure you have the Linker Options configured correctly in Project Options as per these instructions. -
Same for a number of servers. @Ian Barker is looking into it.
-
Have you investigated whether macOS sends regular touch events in addition to magnifyWithEvent when zooming? As I mentioned earlier, this may be a more reliable way, however it might be a bit complex.
-
It's because you're running a 32-bit app on a 64-bit device with a newer version of Android that contains that warning message because 32-bit will eventually go away. To avoid the warning, deploy a 64-bit version of your app.
-
Delphi 10.4 - iOS AppStore "errors occurred in the app thinning process"
Dave Nottage replied to FoxAl's topic in Cross-platform
Where the app is stuck in "Processing"? - Yes. On multiple occasions. The usual solution is to resubmit using Transporter - you'll have to bump the version of your app (e.g. go from CFBundleVersion value of 1.0.1 to 1.0.2), so that's annoying, but hopefully it'll not become "stuck" this time. -
I've now added the code and demo (with documentation!) for what I have been using as a replacement, here.
-
I need to provide some documentation, but I have this: https://github.com/DelphiWorlds/Kastri/tree/master/Demos/macOSStatusBar Also be aware that I personally use another variation of this because I had trouble with "dynamic" items when associating them with FMX menu items - it became easier to just forget FMX menu items entirely, though there's a bit more code involved. I can share that code later.
-
Please see:
-
For Zoom, definitely. You mentioned that Rotate works?
-
Zoom is "broken" because the code assumes there are touch events available when the magnifyWithEvent method (in FMX.Platform.Mac) is called. In theory, the same result could be implemented using individual touch events, but it would be more complex. magnifyWithEvent is supposed to be used in conjunction with the magnification property on the event parameter (an NSEvent). I didn't look into the other gestures.
-
Delphi 12 - PAClient Error - Locating Simulator Error when Delploying
Dave Nottage replied to Shano's topic in Cross-platform
Actually, it hasn't. What was missing has happened before, i.e. it does not automatically download iOS support (weird). From the Xcode menu select Settings, then the Platforms tab. For the iOS 17.2 item, click Get: (which I have already done in this picture) Even weirder: while downloading it says "simulator". Once that completes, deployment should work.