Registriert seit: 17. Sep 2006
Ort: Barchfeld
27.624 Beiträge
Delphi 12 Athens
|
AW: [FMX-iOS] dyld_sim EInvalidOperation 'Nicht unterstützte InputQuery-Felder'
13. Dez 2016, 12:33
Schau doch mal in die FMX.Dialogs.iOS.pas (TCocoaDialogsService.CreateAlertView):
Zitat:
Delphi-Quellcode:
function IsPassword(const Prompt: string): Boolean;
begin
Result := (Prompt.Length > 0) and (Prompt.Chars[0] < #32);
end;
...
if (LPromptsLength > 2) or ((LPromptsLength = 2) and not (IsPassword(APrompts[1]) and
(not IsPassword(APrompts[0])))) then
raise EInvalidOperation.Create(SUnsupportedInputQuery);
Detlef "Ich habe Angst vor dem Tag, an dem die Technologie unsere menschlichen Interaktionen übertrumpft. Die Welt wird eine Generation von Idioten bekommen." (Albert Einstein)
Dieser Tag ist längst gekommen
|