This question already has answers here:
get list of installed applications on iphone objective-c
(6 answers)
Closed 9 years ago.
Im developing on for iOS- supporting from iOS 5 and on
I need to create a button that will open for me a list of all applications installed on the device- through which i can send messages
I have no idea where to even start
You can't have the list of installed applications on iOS.
What you can do is use the URL Schemes.
Here is Apple's URL Scheme Reference
And here is a wiki with the URL Schemes for many iOS applications
Related
This question already has answers here:
iOS 9 not opening Instagram app with URL SCHEME
(14 answers)
Closed 7 years ago.
The following URL scheme was working on previous version but doesn't work anymore on iOS 9 :
comgooglemaps://?q=Google+Japan,+Minato,+Tokyo,+Japan¢er=35.660888,139.73073&zoom=15&views=transit
Did something change on iOS 9 that prevent apps from opening other apps using URL schemes ?
I think currently you don't add google map scheme to whitelist.
You can reference to this question.
Whitelist
This question already has answers here:
iOS open YouTube App with query (url schemes)
(10 answers)
Closed 8 years ago.
I want to open Youtube app with an channel from my iPhone app. Previously i was using the following URL scheme and it was working fine.
youtube://user/channel Name.
But this is not working after i updated my Youtube app to 2.6.0 which is latest. Is there any change in the URL scheme to open youtube app with a channel. Any help would be appreciated.
i tried with the following but of no use.
youtube://channel/channelName
youtube://channel/channelID
Thanks in advance.
youtube://www.youtube.com/user/channelname
Native app URL strings:
http://www.youtube.com/watch?v=VIDEO_IDENTIFIER
http://www.youtube.com/v/VIDEO_IDENTIFIER
Please refer this Apple Doc link for more info.
This question already has answers here:
Can you build dynamic libraries for iOS and load them at runtime?
(3 answers)
Closed 9 years ago.
I want to use dynamically linked libraries in my iOs app. My problem is that I read that I can use only static libraries. I searched about that on official Apple web side but I cant find anything about this. Can someone point me the link to official Apple information that says I cant use dynamically linked library in my iOS project?
Apple only allows dynamically linked libraries in Mac apps, currently they are disallowed on the iOS app store.
edit: Scroll to the bottom here https://developer.apple.com/library/ios/documentation/Miscellaneous/Conceptual/iPhoneOSTechOverview/iPhoneOSFrameworks/iPhoneOSFrameworks.html#//apple_ref/doc/uid/TP40007898-CH6-SW3
to see Apple's official stance.
This question already has answers here:
Open Flickr From Third Party iOS App
(3 answers)
Closed 9 years ago.
I checked the plist of the flickr app and it lets me open it with the url handler
flickr://
but what is the argument to open a specific profile page? I can't find any documentation for that...
Thanks
You should look at my answer here:
Open Flickr From Third Party iOS App.
Unfortunately, Flickr didn't add this option.
This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
fetch pdf from iBooks to my app
I need to list the files that are in iBook directory.
What is the iBook files/documents path(directory) in the iPad device?
This isn't possible. For security purposes apps are not allowed to touch each other's document directories.