WTArchitectStartupConfiguration Class Reference

Inherits from WTStartupConfiguration : NSObject
Declared in WTArchitectStartupConfiguration.h

Overview

WTArchitectStartupConfiguration represents Wikitude iOS SDK (JS API) specific configuration values taht are used during the SDK starup.

  desiredLocationAccuracy

The location accuracy that should be used when Geo augmented reality is used. Please refer to the CLLocationAccuracy documentation for more information about possible values.

@property (nonatomic, assign) CLLocationAccuracy desiredLocationAccuracy

Discussion

The default value is kCLLocationAccuracyNearestTenMeters

Declared In

WTArchitectStartupConfiguration.h

  desiredLocationDistanceFilter

The location distance filter that should be used when Geo augmented reality is used. Please refer to the CLLocationDistance documentation for more information about possible values.

@property (nonatomic, assign) CLLocationDistance desiredLocationDistanceFilter

Discussion

The default value is kCLDistanceFilterNone

Declared In

WTArchitectStartupConfiguration.h

  desiredHeadingFilter

The heading filter that should be used when Geo augmented reality is used and the gyro can not be used (iOS 10.0 - 10.1)

@property (nonatomic, assign) CLLocationDegrees desiredHeadingFilter

Discussion

The default value is kCLHeadingFilterNone

Declared In

WTArchitectStartupConfiguration.h

  overrideHardwareMuteSwitch

A Boolean value that determines if audio will be played regardless of the status of the hardware mute switch.

@property (nonatomic, assign) BOOL overrideHardwareMuteSwitch

Discussion

The default value is YES

Declared In

WTArchitectStartupConfiguration.h

  disableWebViewScrollAndZoom

Defines if the underlying WKWebView scroll view is allowed to scroll horizontally/vertically or zoom.

@property (nonatomic, assign) BOOL disableWebViewScrollAndZoom

Discussion

@Discussion This property should only be set to YES if scroll and zoom can not be disable in the Architect Worlds html/css.

The default value is NO.

Declared In

WTArchitectStartupConfiguration.h

+ transferArchitectStartupConfiguration:toArchitectStartupConfiguration:

Utility method to transfer a certain Architect startup configuration to a different one.

+ (void)transferArchitectStartupConfiguration:(WTArchitectStartupConfiguration *)sourceArchitectStartupConfiguration toArchitectStartupConfiguration:(WTArchitectStartupConfiguration *)destinationArchitectStartupConfiguration

Parameters

sourceArchitectStartupConfiguration

The startup configuration from which values are read

destinationArchitectStartupConfiguration

The startup configuraiton to which values should be written to

Discussion

@Discussion Also WTStartupConfiguration specific values are transfered.

Declared In

WTArchitectStartupConfiguration.h