ios - How to share Image and text in Iphone -


i want share image , text installed app in iphone please me i'm new in iphone development. don't know how this.

i complete in android below code.

            uri imageuri = uri.parse(sharepath);             intent intent = new intent(intent.action_send);             intent.settype("image/png");             intent.putextra(intent.extra_text, s);             intent.putextra(intent.extra_stream, imageuri);             startactivity(intent.createchooser(intent, "share")); 

but don't know how in iphone.

you may use uiactivityviewcontroller share images or text.

please go through this or this link.


Comments

Popular posts from this blog

google chrome - Developer tools - How to inspect the elements which are added momentarily (by JQuery)? -

angularjs - Showing an empty as first option in select tag -

php - Cloud9 cloud IDE and CakePHP -