Jump to content

JimKueneman

Members
  • Content Count

    8
  • Joined

  • Last visited

Posts posted by JimKueneman


  1. It has been a long time since I have created an iOS app.   

     

    1. I created a certificate on my new machine with Keychain Access
    2. Went to the Apple Developer site and created a new Certificate and uploaded the CertificateSigningRequest.certSigningRequest file selecting the Apple Development choice.
    3. Downloaded that file and double clicked it.  Looked in the Keychain and I now have a Apple Development: Jim Kueneman (42729xxxxx) certificate that says is valid.
    4. Created a new App ID for the app.  Selected new App ID and typed in this for the bundle ID net.mustangpeak.LccThrottleApp
    5. Created a new device for my iPhone 12 mini using it UUID
    6. Created a new profile using the AppID and Device I just created and downloaded it.  I double clicked it and it was converted to a file that was put in the ~/Library/MobileDevice/Provisioning Files/ folder.  

     

    If I look at the contents of that file it has the App ID and Phone UUID in it.

     

    I open Delphi and my application.  In my project options and go to Project Options -> Application -> Version Info -> CFBundleIdentifier I have it set to net.mustangpeak.$(ModuleName).  My application name is LccThrottleApp so it resolves to net.mustangpeak.LccThrottleApp.

     

    I plug in my iPhone and see it in the IDE in toolbar.

     

    Now I go to Project Options - > Deployment -> Provisioning and I see "No provisioning file found for the selected build configuration and the selected device"

     

    What else is the IDE looking for that I missed?  

     

    Jim

     

     

     

     


  2. Delphi 11.2 Patch 1, just bought a new M1 and installed VMWare and Windows 11 Arm.  Installed XCode 14.2 and the command line tools.  PasServer is working correct but it can't find any of the OSX or iOS SDKs.  

     

    Anyone else experimenting with running on the M1 and have this problem?  

     

    Thanks,

    Jim


  3. When I access TListview.Items when the search bar contains a string the property is only returning items that are presented in the LV during that time.  I have data stored in the ObjectTag that is being updating in the background so when it comes in I need store it in these object but during a search I can't access them through TListview.Items  

    I am not seeing a property that give me access to the unfiltered list of items stored in the list view.  How to I access a  full list of TListview Items while the control is in search mode?

     

    Thanks,

    JIm


  4. Hi, 

     

    Delphi 11.2 Patch 1, FireMonkey app running in Windows 11 in a virtual Machine on OSX.  Does not work compiled into Linux or OSX either.

     

    procedure TForm1.Button4Click(Sender: TObject);
    var
      L: TLabel;
    begin
      Label1.TextSettings.Font.Style := [TFontStyle.fsBold];  // Desiger Dropped Label is Bold
      L := TLabel.Create(Self);
      L.Text := 'Testing';
      L.Align := TAlignLayout.Bottom;
      L.TextSettings.Font.Style := [TFontStyle.fsBold];  // Dynamically created Label is not Bold
      L.Parent := Layout1;
    end;

    Why won't the dynamically added Label respond to changing TextSettings.Font.Style?

     

    Jim

×