フォーラム


ゲスト  

ようこそ ゲスト さん。このフォーラムに投稿するには 登録が必要です。

ページ: [1]
トピック: Custom URL Schemeで ?後のクエリも撮りたいのですが
毛利 春幸
メンバー
投稿数: 25
Custom URL Schemeで ?後のクエリも撮りたいのですが
on: 2016/02/01 00:17 Mon

http://codeverge.com/embarcadero.delphi.ios/ios-share-files/1096322
上記のような感じにすれば Custom URL Schemeが取れるのですが
?の後のクエリーってどうやって取れば良いのでしょうか?

modeled_app://?test1=test 
DEKO
管理者
投稿数: 2691
Re: Custom URL Schemeで ?後のクエリも撮りたいのですが
on: 2016/02/01 05:39 Mon

これの件ですよね。
http://docwiki.embarcadero.com/Libraries/ja/FMX.Platform.TApplicationEvent

試していないのでアレですが、URL にはスキーム名だけしか返ってこないのですか?

毛利 春幸
メンバー
投稿数: 25
Re: Custom URL Schemeで ?後のクエリも撮りたいのですが
on: 2016/02/01 10:48 Mon

DEKOさんありがとうございます。m(_ _)m
AContext: TObject はTiOSOpenApplicationContextにしてやればよかったのですねw

function TForm1.AppEvent(AAppEvent: TApplicationEvent;
AContext: TObject): Boolean;
begin
if AAppEvent = TApplicationEvent.OpenURL then
begin
Memo1.Lines.Append('AppEvent' + (AContext as TiOSOpenApplicationContext).URL);
end;
end;

procedure TForm1.FormCreate(Sender: TObject);
var
AppEventSvc: IFMXApplicationEventService;
begin
if TPlatformServices.Current.SupportsPlatformService( IFMXApplicationEventService, IInterface( AppEventSvc ) )
then AppEventSvc.SetApplicationEventHandler( AppEvent );
end;
DEKO
管理者
投稿数: 2691
Re: Custom URL Schemeで ?後のクエリも撮りたいのですが
on: 2016/02/01 16:39 Mon

おぉ!URL で取れましたか!!

毛利 春幸
メンバー
投稿数: 25
Re: Custom URL Schemeで ?後のクエリも撮りたいのですが
on: 2016/02/01 18:04 Mon

DEKOさんありがとうございます。
cppでも書いたので貼らせていただきます。
https://gist.github.com/mojeld/8b651b6b3b9d4c099c1a

DEKO
管理者
投稿数: 2691
Re: Custom URL Schemeで ?後のクエリも撮りたいのですが
on: 2016/02/01 22:18 Mon

あざーす m(_ _)m

ページ: [1]
WP Forum Server by ForumPress | LucidCrew
バージョン: 1.7.5 ; ページロード: 0.035 sec.