iOS Question get job url in jobdone

cloner7801

Active Member
Licensed User
Longtime User
Hi,
How can I get job url in job done ?
I have 10-15 job request and in every jobname I set imageview tag name to set bitmap in imageview with find by tag..

but in jobdone I need request url (image url)
What should I do?
 

Descartex

Well-Known Member
Licensed User
Longtime User
Hi,
You can set the tag with multiple data, for example:
B4X:
Job.Tag=Imageview.Tag&":"&URL
Later, on JobDone, you can extract the data:
B4X:
Dim Data() as String
Data=Regex.Trim(":",Job.Tag)
If everything works as expected, on Data(0) you should have the Imageview tag you need and on Data(1) the URL you passed.
Regards.
 
Upvote 0
Top