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.
Related
This question already has answers here:
Link to app manage subscriptions in app store
(10 answers)
Closed last month.
Out of all the other posts about this topic I still fail to find how to properly execute this.
I have many apps from the iOS App Store that has button to "Manage my subscription" which links directly to Settings -> iCloud -> Subscriptions page.
I'm trying to use React Native's Linking function to do so ie.
import { Linking } from 'react-native';
Linking.openURL('App-prefs:root=APPLE_ACCOUNT&path=SUBSCRIPTIONS');
But it only opens the main Settings page. I tried several different URLs to test if I could open other pages of the Settings app without any luck. (Got the Settings app's URLs from https://github.com/FifiTheBulldog/ios-settings-urls)
I read in a few posts that I need to tweak my XCode project's settings to add a custom URL handler but those answers seem outdated. I have also read that my app could get rejected because of this but as I said, I have many apps that I use that does specific pages of the iOS Settings app so I don't think it's a problem for Apple.
I'm looking for a definitive answer to this.
For iOS 14 and over the URL format has changed. The root= part should be removed.
For iOS 14 the new format is:
Linking.openURL('App-prefs:APPLE_ACCOUNT&path=SUBSCRIPTIONS');
And for iOS 13 the format was:
Linking.openURL('App-prefs:root=APPLE_ACCOUNT&path=SUBSCRIPTIONS');
Found the answer in this comment here: Opening the Settings app from another app
This question already has answers here:
best way to add license section to iOS settings bundle
(11 answers)
Closed 4 years ago.
I want to add my Privacy Policy, Terms of Use etc. pages into the app's settings page, which is located in OS's Settings app. (ex: News app's settings have a policy page in its own settings on iOS 12 Beta)
I have 2 questions about this approach.
1. Is it a good approach? Not only for policy pages, I want to locate every in-app settings in here.
2. How can I do that?
Thank you.
EDIT: According to docs I cannot add a controller or an UITextView into App Settings.
https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/UserDefaults/Preferences/Preferences.html
There are the answers for your questions.
Yes it is a good approach.
You can do it by using UIWebView or in UITextView as well.
I am developing a app. I Want to show my app in photos sharing option, I just heard that it is possible now. I added the type in document types but app still not showing. Any help where is the problem.
----------
some one had closed this question wrongly. Now this is possible in iOS 8, Using Share extension Technique
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:
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