Jump to content

Dave Nottage

Members
  • Content Count

    1262
  • Joined

  • Last visited

  • Days Won

    28

Everything posted by Dave Nottage

  1. Dave Nottage

    Can not debug on iOS

    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
  2. Dave Nottage

    Is there any edit/memo which allows multiselect?

    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.
  3. Does Woll2Woll have their own edit in their grid? As I say, the standard TEdit in FMX works here.
  4. Are you using a standard TEdit from FMX? Using NumberPad works here. (Delphi 12, Pixel 6 Pro, Android 14)
  5. Dave Nottage

    TestInsight for Delphi 12

    It's been available for Delphi 12 for some time. The "latest" is always located here.
  6. Dave Nottage

    Is there a Metadata reader/writer/editor unit for FMX/Android?

    You could use the code from here.
  7. Dave Nottage

    detecting app clone on android

    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?
  8. 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.
  9. You might need to provide more information, then - perhaps a test project that reproduces the error?
  10. 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.
  11. 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.
  12. Dave Nottage

    Is getit down for everbody?

    Same for a number of servers. @Ian Barker is looking into it.
  13. Dave Nottage

    Zoom gesture on macOS not working

    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.
  14. Dave Nottage

    Delphi 12 and Android 14

    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.
  15. 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.
  16. Dave Nottage

    MacOS Menu bar app component

    I've now added the code and demo (with documentation!) for what I have been using as a replacement, here.
  17. Dave Nottage

    MacOS Menu bar app component

    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.
  18. Dave Nottage

    Zoom gesture on macOS not working

    For Zoom, definitely. You mentioned that Rotate works?
  19. Dave Nottage

    Zoom gesture on macOS not working

    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.
  20. 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.
  21. It appears Xcode 15.1 has broken Delphi - I'm having the same problems with that version. Reverting to an earlier version may fix it. I'm about to find out.
  22. Sorry about that.. I'm sure I have seen a similar error mentioned before, however I'm unable to find a reference for it. Which version of Xcode are you using?
  23. Is your Mac an M1 or M2 or M3 device? If so, start Xcode on the Mac, and click the Xcode menu, Open Developer Tool > Simulator. If you're able to do that, I'm not sure what the issue is. If your Mac is not an M1, M2 or M3, you're out of luck - Delphi supports only ARM-based Simulator, which is available on those kinds of Macs
  24. Dave Nottage

    Open file dialog in IOS

    No. I guess I'll need to research this further.
×