我試圖用相機的一個小應用程序,但得到這個錯誤:德爾福西雅圖「關於IOS相機給類型轉換錯誤」
Error: Invalid Class Typecast
我所做的是:
- 新的多設備應用
- 動作列表組件
TakePhotoFromCameraAction1
加入的ActionList用行動康恩- 一個按鈕ected到
TakePhotoFromCameraAction1
運行64位IOS9 Ipad的錯誤
運行32位IOS9 Ipad的錯誤
它看起來像誤差在該功能FMX.MediaLibrary.Actions()
到來。
procedure TTakePhotoFromCameraAction.ExecuteTarget(Target: TObject);
begin
if IsSupportedInterface then // This line create the error
FCameraService.TakePhoto(Target as TControl, GetParamsPhotoQuery);
end;
有什麼想法嗎?