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.
Related
This question already has answers here:
How to exclude Notes and Reminders apps from the UIActivityViewController?
(9 answers)
How can you customize UIActivityViewController to ONLY include custom UIActivity types?
(1 answer)
Closed 3 years ago.
Is there any way to hide third party apps extension in UIActivityViewController sheet? Only able to exclude apple predefined app extension. Please suggest me.
I just want to show only Airdrop, Mail and Print options in UIActivityViewController. Hide other installed apps in device i.e) Wattsapp.
This question already has answers here:
iOS linkedin authentication
(6 answers)
Closed 6 years ago.
I have executed the steps as mentioned on the LinkedIn website for authentication and trying out the sample app
failed for URL: "linkedin://authorize" - error:
"This app is not allowed to query for scheme linked"
Any help will be greatly appreciated.
Goal is to authenticate using LinkedIn credentials in the app I am building
Xcode 7 / iOS 9 solution:
Go into your Info.plist and add an array with the key LSApplicationQueriesSchemes The array should contain any url schemes that your app needs to use. In your case, linkedin should be the value
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:
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