c# - xamarin how to open facebook and twitter app from my ios app by a button -
i'm developing ios app xamarin, in c#. have "contact" uiviewcontroller, buttons, including facebook , twitter.
i need open facebook , twitter app app, points specific facebook page , twitter profile.
which best way this?
thanks in advance...
try :
device.openuri(new uri("fb://page/page_id")); device.openuri(new uri("twitter://user?user_id=userid"));
for page_id
right click on page , select view source page , find page_id
facebook , same twitter find userid
Comments
Post a Comment