MessageDlg('Choose a button:', System.UITypes.TMsgDlgType.mtInformation, [ System.UITypes.TMsgDlgBtn.mbYes, System.UITypes.TMsgDlgBtn.mbNo, System.UITypes.TMsgDlgBtn.mbCancel ], 0, procedure(const AResult: TModalResult) begin if AResult = mrYES then ShowMessage('You chose Yes') else if AResult = mrNo then ShowMessage('You chose No') else if AResult = mrCancel then ShowMessage('You chose Cancel'); end);
InputQuery('Input', ['Name'], [''], procedure(const AResult: TModalResult; const AValues: array of string) begin if AResult = mrOk then Showmessage(AValues[0]); end);
更新:
下面代碼 Android 實機沒問題,但在 iOS 實機沒有動作。
MessageDlg('Choose a button:', System.UITypes.TMsgDlgType.mtInformation, mbOKCancel, 0, procedure(const AResult: TModalResult) begin if AResult = mrOk then ShowShareSheetAction1.ExecuteTarget(Sender); // iOS 實機沒有動作 (沒有當機) end);