FIRDynamicLinkIOSParameters
@interface FIRDynamicLinkIOSParameters : NSObject
The Dynamic Link iOS parameters.
-
The bundle ID of the iOS app to use to open the link.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *bundleID;
-
The appStore ID of the iOS app in AppStore.
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSString *appStoreID;
-
The link to open when the app isn’t installed. Specify this to do something other than install the app from the App Store when the app isn’t installed, such as open the mobile web version of the content, or display a promotional page for the app.
Declaration
Objective-C
@property (nonatomic, nullable) NSURL *fallbackURL;
-
The target app’s custom URL scheme, if defined to be something other than the app’s bundle ID
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSString *customScheme;
-
The bundle ID of the iOS app to use on iPads to open the link. This is only required if there are separate iPhone and iPad applications.
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSString *iPadBundleID;
-
The link to open on iPads when the app isn’t installed. Specify this to do something other than install the app from the App Store when the app isn’t installed, such as open the web version of the content, or display a promotional page for the app.
Declaration
Objective-C
@property (nonatomic, nullable) NSURL *iPadFallbackURL;
-
The minimum version of your app that can open the link. If the
- installed app is an older version, the user is taken to the AppStore to upgrade the app.
Note
It is app’s developer responsibility to open AppStore when received link declares- higher minimumAppVersion than currently installed.
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSString *minimumAppVersion;
-
A method for creating the iOS parameters object.
Declaration
Objective-C
+ (nonnull instancetype)parametersWithBundleID:(nonnull NSString *)bundleID;
Parameters
bundleID
The bundle ID of the iOS app to use to open the link.
Return Value
Returns an object to be used with FIRDynamicLinkURLComponents to add iOS parameters to a generated Dynamic Link URL.
-
A method for creating the iOS parameters object.
Declaration
Objective-C
- (nonnull instancetype)initWithBundleID:(nonnull NSString *)bundleID;
Parameters
bundleID
The bundle ID of the iOS app to use to open the link.
Return Value
Returns an object to be used with FIRDynamicLinkURLComponents to add iOS parameters to a generated Dynamic Link URL.