-
Content Count
17 -
Joined
-
Last visited
Community Reputation
5 NeutralTechnical Information
-
Delphi-Version
Delphi 10.3 Rio
-
I wrote to the component developer, thank you, the problem is not caused by the component problem Delphi! CMD was able to run smoothly when we ran this parameter. GetItCmd.exe -c = useonline
-
I don't understand why it gives the attached error. I try both. *I use this component to support IOS.
-
Hi, For 10.4, getit gives an error, I could not reach the developer. How can I install for 10.4?
-
Hi, I solved the problem permanently, adding the project to pass the following file. *I add that someone might need it in the future. unit uFont; interface uses FMX.Platform, FMX.Graphics; type TmyFMXSystemFontService = class(TInterfacedObject, IFMXSystemFontService) public function GetDefaultFontFamilyName: string; function GetDefaultFontSize: Single; end; implementation function TmyFMXSystemFontService.GetDefaultFontFamilyName: string; begin Result := 'Segoe UI'; end; function TmyFMXSystemFontService.GetDefaultFontSize: Single; begin Result := 12; end; procedure InitFont; begin if TPlatformServices.Current.SupportsPlatformService(IFMXSystemFontService) then TPlatformServices.Current.RemovePlatformService(IFMXSystemFontService); TPlatformServices.Current.AddPlatformService(IFMXSystemFontService, TmyFMXSystemFontService.Create); end; initialization InitFont; end.
-
This property is valid for VCL. Unfortunately this property is not on the FMX side 😞
-
While I can specify the text family with the code below on the VCL side, I could not find out how to do it on the FMX side, so I can solve the problem in this way! Application.Initialize; Application.DefaultFont.Name: = 'Segoe UI';
-
Yes, I have determined it this way, but the interesting thing is that I had no problems with the same delphi version before, so the source of this problem seems to be xcode. It is a very troublesome and unnecessary job that I will have to make a continuous loop for objects in each form to solve the problem 😞
-
If I don't press the button, it didn't work!
-
Hi, Sample file is attached. If it's normal without pressing the button, you should see the font automatically, but it doesn't. Thanks. Project1.zip
-
Hi, You are super! The deficiency I made was the codes that you added to the button, and it worked without any problem. But the problem is this; I already set the fonts of all objects to "Segoe UI" so there are too many forms and objects. The font of all objects such as edits, labels, grids, etc. What is the easiest way to apply the code you collectively write on the ios side with the "Segoe UI" set on Delphi side. Thank you for your attention.
-
Thank you for your answer. My conclusion on this issue; There is a mismatch problem between the latest version of Delphi (10.3.3) and the latest version of xcode. No problem when compiling the same project in older xcode versions. So I think this problem will be solved when 10.4 is released. I spent all 10 days rebuilding everything including the computer to solve this problem and the final result I got was negative. I am continuing the project. I will recompile the ios project with the new version in 10.4 version. Thanks.
-
Have you tried and seen the correct result? It is also tried as you said, but the result is negative!
-
Thank you for the answer. I have read this article before but cannot apply it. Can you look at the project file I made in the annex when you are available. Thank you. segoeui.zip
-
I formatted the computer, reinstalled everything but my problem is still not resolved. Problem is this; Delphi fmx uses Segoe UI as the standard font family, which is how I used the whole project. But macOs replaces this font with Helvetica Nue, which looks very bad. Is there an easy way to make the Segoe UI the font of the project I compiled by macOs?
-
Hi, Everything is the same on the Delphi side. I made the last updates on the macOS, Xcode and ios phone I saw the result. macOs: 10.15.4 Xcode: 11.4 ios: 13.4.1 The app uses the Segoe UI font, before it was running by the macos without installing this font. Thank you for the answer.