Version: 2023.1
iOS environment setup
Developing for iOS

iOS Player 设置

Player settings for the iOS Player let you customize how Unity builds and displays your final application when targeting the iOS platform. You can access them by navigating to Edit > Project Settings > Player and then selecting the iOS tab. For a description of the general Player settings, refer to Player Settings.

Player settings sections for iOS.
Player settings sections for iOS.

您可以在以下部分找到这些属性的文档:

Icon

Icon settings for iOS.
Icon settings for iOS.

Use the Icon settings to customize the branding for your application on the Apple Store.

You can upload and assign the following types of custom icons for each iOS device:

设置 描述
Application icons The main device icons for your application.
Spotlight icons Icons that appears in spotlight search results.
Settings icons Icons that appears in the device’s main settings page.
Notification icons Icons that display in notifications sent from your application.
Marketing icons Icons to use in the Apple App Store.

Icon files can be any image file supported by Unity, in the form of a Texture2D asset. If an icon Texture is missing, Unity scales the icon Texture with the nearest size, with a preference towards using larger Textures.

Resolution and presentation

Use the following Resolution and Presentation settings to customize aspects of the screen’s appearance.

Resolution Scaling

属性 描述
Resolution Scaling Mode Use the Resolution Scaling Mode setting to set the scaling to be equal to or below the native screen resolution.
Disabled 缩放不会应用,并且应用程序将渲染屏幕原始分辨率。
FixedDPI When you select this value, the Target DPI property appears.

Use the Target DPI property to set the target DPI of the game screen. Unity downscales the game screen to match this setting if the device’s native screen DPI is higher than this value. This helps you optimize performance and battery life. You can also use it to target a specific DPI setting.

Unity calculates the scale as min(Target DPI * Factor / Screen DPI, 1). The Factor uses the Resolution Scaling Fixed DPI Factor value you enter in the Quality settings.
Reset resolution on window resize Set the screen resolution to the new window size when the window size changes. If you set Resolution Scaling Mode to Fixed DPI, the resolution recalculates based on the Fixed DPI property.

Orientation

Use the Orientation section to customize settings relating to the orientation of the application on the device.

Default Orientation 下拉菜单中选择游戏的屏幕方向:

属性 描述
Default Orientation Specifies the screen orientation the application uses.

Note: Unity shares the value you set for this setting between Android and iOS.
Portrait The application uses portrait screen orientation where the bottom of the application’s window aligns with the bottom of the device’s screen.
Portrait Upside Down The application uses portrait screen orientation where the bottom of the application’s window aligns with the top of the device’s screen.
Landscape Right The application uses landscape screen orientation where the right side of the application’s window aligns with the bottom of the device’s screen.
Landscape Left The application uses landscape screen orientation where the right side of the application’s window aligns with the top of the device’s screen.
Auto Rotation The screen can rotate to any of the orientations you specify in the Allowed Orientations for Auto Rotation section.
Use Animated Autorotation Enable an animated transition when the user rotates the device. Otherwise, screen rotation changes instantly.

Note: This property appears when you set the Default Orientation to Auto Rotation.

Allowed Orientations for Auto Rotation

Use the Allowed Orientations for Auto Rotation section to specify which orientations the application supports when you set Default Orientation to Auto Rotation. This is useful, for example, to lock the application to landscape orientation but allow the user to change between landscape left and landscape right.

Note: This section appears when you set the Default Orientation in the Orientation section to Auto Rotation.

属性 描述
Portrait Indicates whether the application supports portrait screen orientation where the bottom of the application’s window aligns with the bottom of the device’s screen.
Portrait Upside Down Indicates whether the application supports portrait screen orientation where the bottom of the application’s window aligns with the top of the device’s screen.
Landscape Right Indicates whether the application supports landscape screen orientation where the right side of the application’s window aligns with the bottom of the device’s screen.
Landscape Left Indicates whether the application supports landscape screen orientation where the right side of the application’s window aligns with the top of the device’s screen.

Multitasking Support

如果应用程序需要在全屏模式下运行,请启用 Requires Fullscreen 选项。

Status Bar

使用 Status Bar 部分来指定与 iOS 状态栏相关的参数。

属性 描述
Status Bar Hidden Hide the status bar when your application launches.
Status Bar Style Define the style of the status bar when the application launches.
Disable Depth and Stencil Disable the depth and stencil buffers.
Render Over Native UI Force your application to render on top of the native iOS UI.
Show Loading Indicator Specifies if and how the loading indicator appears.
Don’t Show The loading indicator doesn’t appear.
White Large A large white loading indicator appears.
White A white loading indicator appears.
Gray A gray loading indicator appears.

Splash image

Use the Virtual Reality Splash Image setting to select a custom splash image for Virtual Reality displays. For information on common Splash Screen settings, refer to Splash Screen.

启动屏幕

Launch Screen settings for iOS.
Launch Screen settings for iOS.

启动画面是一个故事板文件,iOS 通过该文件动态地在设备上创建启动画面。具有以下局限性:

  • You can’t display different content based on device orientation for iPads.
  • All iPhones support landscape launch screens, but certain iOS versions display the Landscape Left launch screen instead of the Landscape Right one due to a bug.
  • Before iOS 13, it wasn’t possible to override the root view controller for a storyboard, so the launch screen supports all orientations and ignores some UI settings like status bar behavior. Starting with iOS 13, launch screen is fully compliant with your app’s settings for orientation and status bar appearance.

这些限制也适用于自定义故事板。

Select the Launch screen type for iPhone and iPad in the iPhone Launch Screen and iPad Launch Screen sections:

属性 描述
Default When you select this option, Unity adds a solid blue-black image that’s the same color as the background for Unity’s default splash screen. The image is used for both portrait and landscape orientations, and displays using aspect-fill mode.
Apple no longer supports Launch Images. This option exists for backwards compatibility reasons. If you select it, your project will use Unity’s default splash screen instead.
Image and background (relative size) Displays an image in the center of the screen and fills the remaining area with a solid color.
Portrait Image Select an image for portrait orientation.
Landscape Image Select an image for landscape orientation.
Background Color Select a background color to fill any screen space that the image doesn’t cover.
Fill percentage Specify image size as a percentage of the screen size. Unity calculates image size based on the length or width of the screen, whichever one is smaller (vertical for landscape displays, horizontal for portrait ones).
Image and background (constant size) Displays an image in the center of the screen and fills the area with a solid color. This has the same options as Image and background (relative size), except that you specify image size in points rather than as a percentage.

Tip: Points and pixels aren’t the same. A pixel (px) is a single dot in your image. A point (pt) is a unit of length that measures 1/72 of an inch. Pixel sizes are relative to the screen size and resolution, while point sizes are the size on any screen. For more information, refer to the W3C guidance on size units.
Custom XIB When you select this option, the Custom XIB button appears.
Custom XIB Select the button to use a custom XIB file as a loading screen.
Custom Storyboard When you select this option, the Custom Storyboard button appears.
Custom Storyboard Select the button to use a custom Storyboard file as a loading screen.

Note: With a Unity Personal subscription, the Unity Splash Screen displays before your chosen splash screen.

自定义故事板

对于 iPhone 或 iPad,如果选择 Launch screen type 下拉菜单中的 Custom Storyboard 选项,会出现 Custom Storyboard 按钮。

Click the Custom Storyboard button to select a storyboard to display when your game starts up on the device. For your storyboard to appear here, you must first create the storyboard in Xcode and copy it to your Project. For more information, refer to storyboards, scenes, and connections.

如果不使用自定义故事板,可以使用 Unity 的内置启动画面来实现启动画面。

Debugging and crash reporting

Use the debugging and crash reporting settings to gather data about your app’s performance and troubleshoot crashes.

Debugging

属性 描述
Enable Internal Profiler (Deprecated) This feature is deprecated and will be removed in a future version of Unity. Use the Profiler window instead.

The Profiler collects application performance data and prints a report to the console. The report has the number of milliseconds each Unity subsystem takes to execute on each frame, averaged across 30 frames.

Crash Reporting

属性 描述
On .Net UnhandledException Select the action Unity takes when a .NET unhandled exception occurs.
Crash Generates a crash report if the application crashes which users can submit to iTunes and developers can use to troubleshoot the crash.
Silent Exit The application exits with no errors and doesn’t generate a crash report
Log Obj-C Uncaught Exceptions Print Objective-C Uncaught Exception information to the console.
Enable Crash Report API Enable a custom crash reporter to capture crashes. You can use scripts to access crash logs via the CrashReport API.

Other settings

可在 Other Settings 部分中配置一系列 Player 设置。这些选项分为以下几组:

Rendering

使用这些设置可自定义 Unity 针对 iOS 平台渲染应用程序的方式。

Property Description
Color Space Choose which color space to use for rendering. For more information, refer to Linear rendering overview.
Gamma Gamma color space is typically used for calculating lighting on older hardware restricted to 8 bits per channel for the framebuffer format. Even though monitors today are digital, they might still take a gamma-encoded signal as input.
Linear Linear color space rendering gives more precise results. When you select to work in linear color space, the Editor defaults to using sRGB sampling. If your Textures are in linear color space, you need to work in linear color space and deactivate sRGB sampling for each Texture.
Color Gamut You can add or remove color gamuts to use for rendering. Click the plus (+) icon to see a list of available gamuts. A color gamut defines a possible range of colors available for a given device (such as a monitor or screen). The sRGB gamut is the default (and required) gamut.
Multithreaded Rendering Enable this option to move graphics API calls from Unity’s main thread to a separate worker thread. This can help to improve performance in applications that have high CPU usage on the main thread.
Static Batching Enable this option to use static batching.
Dynamic Batching Check this box to use Dynamic Batching on your build (enabled by default).
Sprite Batching Threshold Controls the maximum vertex threshold used when batching.
GPU SKinning Enable this option to use Metal GPU compute skinning, which frees up CPU resources.
Graphics Jobs (Experimental) Enable this option to instruct Unity to offload graphics tasks (render loops) to worker threads running on other CPU cores. This is intended to reduce the time spent in Camera.Render on the main thread, which is often a bottleneck.
Note: This feature is experimental. It may not deliver a performance improvement for your project, and may introduce new crashes.
Texture compression format Choose between ASTC and PVRTC as the default texture compression format for iOS. Check the texture compression format overview for more information.
Normal Map Encoding Choose XYZ or DXT5nm-style to set the normal map encoding. This setting affects the encoding scheme and compression format used for normal maps. DXT5nm-style normal maps are of higher quality, but more expensive to decode in shaders.
Lightmap Encoding Defines the encoding scheme and compression format of the lightmaps.
You can choose from Low Quality, Normal Quality, or High Quality
HDR Cubemap Encoding Defines the encoding scheme and compression format of the HDR Cubemaps.
You can choose from Low Quality, Normal Quality, or High Quality. For more information, refer to Lightmaps: Technical information.
Lightmap Streaming Enable this option to use Mipmap Streaming for lightmaps. Unity applies this setting to all lightmaps when it generates them.
Note: To use this setting, you must enable the Texture Streaming Quality setting.
Streaming Priority Sets the priority for all lightmaps in the Mipmap Streaming system. Unity applies this setting to all lightmaps when it generates them.
Positive numbers give higher priority. Valid values range from –128 to 127.
Frame Timing Stats Enable this option to gather CPU/GPU frame timing statistics.
Virtual Texturing Enable this option to reduce GPU memory usage and texture loading times if your Scene has many high resolution textures. For more information, refer to Virtual Texturing.

Note: The Unity Editor requires a restart for this setting to take effect.
360 Stereo Capture Indicates whether Unity can capture stereoscopic 360 images and videos. For more information, refer to Stereo 360 Image and Video Capture.
Load/Store Action Debug Mode Highlights undefined pixels that might cause rendering problems on mobile platforms. This affects the Unity Editor Game view, and your built application if you select Development Build in Build Settings. Refer to LoadStoreActionDebugModeSettings for more information.

Identification

输入应用程序的标识信息。

属性 描述
Override Default Bundle Identifier Indicates whether you can manually set the bundle identifier.
Note: This setting affects macOS, iOS, tvOS, and Android.
Bundle Identifier Enter the bundle identifier of the application you are building. The basic structure of the identifier is com.CompanyName.ProductName. This structure might vary based on which country you live in, so always default to the string Apple provides to you for your Developer Account. Your ProductName is available from your provisioning certificates.

The Bundle Identifier must follow the convention com.YourCompanyName.YourProductName and must contain only alphanumeric and hyphen characters. For more information, refer to CFBundleIdentifier.
Important: Unity automatically replaces any invalid characters you type with a hyphen.

To set this property, enable Override Default Bundle Identifier.
版本 Enter the release-version-number string for the bundle (for example, 4.3.6).

This value appears as CFBundleShortVersionString in the associated info.plist file. For more information, refer to CFBundleShortVersionString.
Build Enter the build number for this version of your app.

This value appears as CFBundleVersion in the associated info.plist file. For more information, refer to CFBundleVersion.
Signing Team ID Enter your Apple Developer Team ID. You can find this on the Apple Developer website under Xcode Help. This sets the Team ID for the generated Xcode project, allowing developers to use Build and Run functionality. You must enter an Apple Developer Team ID for automatic signing of your app.

For more information, refer to Creating Your Team Provisioning Profile.
Automatically Sign 启用此选项可指示 Xcode 自动为您的构建版本签名。

配置

Property Description
Scripting Backend Choose the scripting backend you want to use. The scripting backend determines how Unity compiles and executes C# code in your Project.
Mono Compiles C# code into .NET Common Intermediate Language (CIL) and executes that CIL using a Common Language Runtime. For more information, refer to Mono.
IL2CPP Compiles C# code into CIL, converts the CIL to C++ and then compiles that C++ into native machine code, which executes directly at runtime. For more information, refer to IL2CPP.
API Compatibility Level Choose which .NET APIs you can use in your project. This setting can affect compatibility with third-party libraries. However, it has no effect on Editor-specific code (code in an Editor directory, or within an Editor-specific Assembly Definition).

Tip: If you are having problems with a third-party assembly, you can try the suggestion in the API Compatibility Level section below.
.Net Framework Compatible with the .NET Framework 4 (which includes everything in the .NET Standard 2.0 profile plus additional APIs). Choose this option when using libraries that access APIs not included in .NET Standard 2.0. Produces larger builds and any additional APIs available aren’t necessarily supported on all platforms. For more information, refer to Referencing additional class library assemblies.
.Net Standard 2.1 Produces smaller builds and has full cross-platform support.
Editor Assemblies Compatibility Level Select which .NET APIs to use in your Editor assemblies.
.NET Framework Compatible with the .NET Framework 4 (which includes everything in the .NET Standard 2.1 profile plus additional APIs). Choose this option when using libraries that access APIs not included in .NET Standard 2.1. Produces larger builds and any additional APIs available aren’t necessarily supported on all platforms. For more information, refer to Referencing additional class library assemblies.
.NET Standard Compatible with .NET Standard 2.1. Produces smaller builds and has full cross-platform support.
IL2CPP Code Generation Defines how Unity manages IL2CPP code generation.

Note: To use this, set Scripting Backend to IL2CPP.
C++ Compiler Configuration Choose the C++ compiler configuration used when compiling IL2CPP generated code.
Debug Debug configuration turns off all optimizations, which makes the code quicker to build but slower to run.
Release Release configuration enables optimizations, so the compiled code runs faster and the binary size is smaller but it takes longer to compile.
Master Master configuration enables all possible optimizations, squeezing every bit of performance possible. For instance, on platforms that use the MSVC++ compiler, this option enables link-time code generation. Compiling code using this configuration can take significantly longer than it does using the Release configuration. Unity recommends building the shipping version of your game using the Master configuration if the increase in build time is acceptable.
IL2CPP Stacktrace Information Choose the information to include in a stack trace. For further details on the information types, refer to Managed stack traces with IL2CPP.
Method Name Include each managed method in the stack trace.
Method Name, File Name, and Line Number Include each managed method with file and line number information in the stack trace.

Note: Using this option can increase both the build time and final size of the built program.
Use incremental GC Uses the incremental garbage collector, which spreads garbage collection over several frames to reduce garbage collection-related spikes in frame duration. For more information, refer to Automatic Memory Management.
Allow downloads over HTTP Indicates whether to allow downloading content over HTTP. The default option is Not allowed due to the recommended protocol being HTTPS, which is more secure.
Not Allowed Never allow downloads over HTTP.
Allowed in Development Builds Only allow downloads over HTTP in development builds.
Always Allowed Allow downloads over HTTP in development and release builds.
Camera Usage Description Enter the reason for accessing the camera on the device.
Microphone Usage Description Enter the reason for accessing the microphone on the device.
Location Usage Description Enter the reason for accessing the location of the device.
Use On-Demand Resources Use on-demand resources and enable Variant map for app slicing.
Accelerometer Frequency Choose how often to sample the accelerometer. Use a lower frequency for better performance. If your app doesn’t use the accelerometer, select Disabled.
Mute Other Audio Sources Indicates whether your Unity application should stop audio from applications running in the background. Otherwise, Audio from background applications continues to play alongside your Unity application.
Prepare iOS for Recording Initializes the microphone recording APIs. This lowers recording latency, but it also re-routes iPhone audio output via earphones.
Force iOS Speakers when Recording Send the phone’s audio output through the internal speakers, even when headphones are plugged in and recording.
Requires Persistent WiFi Enable this option to require a Wi-Fi connection. This maintains the active Wi-Fi connection while the app is running.
Supported URL schemes A list of supported URL schemes.

To add new schemes, increase the value of the Size property, then set a reference to the URL to open in the new Element box that appears.
Target Device Select which devices the app targets.
Target SDK Select which SDK the app targets.

Note: Be sure to select the correct SDK. For example, if you select the Device SDK in Unity and target the Simulator in Xcode, your build will fail.
Target minimum iOS Version Select the minimum version of iOS that the app works on.
Enable ProMotion Support Use high frequency refresh rates (120 Hz) on ProMotion displays. This might cause your app to use more battery power.
Requires ARKit support Restrict the app to iPhone 6s/iOS 11 and later devices when you publish it to the App Store.
Automatically add capabilities Generate an entitlements.plist file and add capabilities for iOS APIs that your app implements (for example, Game Center or Notifications). For more information, refer to Entitlements.
Defer system gestures on edges Select one or more edges that users must swipe twice to enact system gestures.
Hide home button on iPhone X Hide the home button on iPhone X devices when the app is running.
Render Extra Frame on Pause Issue an additional frame after the frame when the app pauses. This lets your app display graphics that display the paused state when the app goes into the background.
Enable Custom Background Behaviors Choose what the app can do when the user sends the app to the background. For an example, refer to the BackgroundFetch GitHub project.
Variant map for app slicing Expand the Variant map for app slicing section to find the list of variant names configured in scripting. For more information on variants, refer to App slicing.

Note: Enable Use on-demand resources to view this property.
Architecture Choose which architecture to target. Only ARM64 is available for iOS.
Active Input Handling Choose how to handle input from users.
Input Manager (Old) Uses the traditional Input settings.
Input System Package (New) Uses the Input system. This option requires you to install the InputSystem package.
Both Use both systems.

API Compatibility Level

You can choose your mono API compatibility level for all targets. Sometimes a third-party .NET library uses functionality that is outside of your .NET compatibility level. If you’re on Windows, you can use the third-party software ILSpy to understand what’s happening and how to fix it. Follow these steps:

  1. Install ILSpy for Windows.
  2. Drag the .NET assemblies for the API compatibility level that you are having issues with into ILSpy. You can find these under Frameworks/Mono/lib/mono/YOURSUBSET/.
  3. 拖入第三方程序集。
  4. 右键单击第三方程序集并选择 Analyze
  5. In the analysis report, inspect the Depends on section. Anything that the third-party assembly depends on, but that’s not available in the .NET compatibility level of your choice, is highlighted in red.

Shader Settings

属性 描述
Shader Precision Model Select the default precision of samplers and the definition of half used in shaders. Select Unified to set the default sampler precision to full precision, and to enable 16-bit floating point operations in shaders on macOS. For more information, refer to ShaderPrecisionModel.
Strict shader variant matching Use the error shader if a shader variant is missing and display an error in the console.
Keep Loaded Shaders Alive Keep all loaded shaders alive and prevent unloading.

Shader Variant Loading

Use these settings to control how much memory shaders use at runtime.

属性 描述
Default chunk size (MB) Sets the maximum size of compressed shader variant data chunks Unity stores in your built application for all platforms. The default is 16. For more information, refer to Shader loading.
Default chunk count Sets the default limit on how many decompressed chunks Unity keeps in memory on all platforms. The default is 0, which means there’s no limit.
Override Enables overriding Default chunk size and Default chunk count for this build target.
Chunk size (MB) Overrides the value of Default chunk size (MB) on this build target.
Chunk count Overrides the value of Default chunk count on this build target.

Script Compilation

Script Compilation settings for iOS.
Script Compilation settings for iOS.
属性 描述
Scripting Define Symbols Sets custom compilation flags.

For more details, refer to Platform dependent compilation.
Additional Compiler Arguments Adds entries to this list to pass additional arguments to the Roslyn compiler. Use one new entry for each additional argument.
To create a new entry, click Add (+). To remove an entry, click Remove (-).

When you have added all desired arguments, click Apply to include your additional arguments in future compilations. Click Revert to reset this list to the most recent applied state.
Suppress Common Warnings Indicates whether to display the C# warnings CS0169 and CS0649.
Allow ‘unsafe’ Code Enables support for compiling ‘unsafe’ C# code in a pre-defined assembly (for example, Assembly-CSharp.dll).
For Assembly Definition Files (.asmdef), click on one of your .asmdef files and enable the option in the Inspector window that appears.
Use Deterministic Compilation Indicates whether to prevent compilation with the -deterministic C# flag. With this setting enabled, compiled assemblies are byte-for-byte the same each time they’re compiled.

For more information, refer to C# Compiler Options that control code generation.

Optimization

Property Description
Prebake Collision Meshes Adds collision data to Meshes at build time.
Preloaded Assets Sets an array of Assets for the player to load on startup.
To add new Assets, increase the value of the Size property and then set a reference to the Asset to load in the new Element box that appears.
AOT Compilation Options Additional options for ahead-of-time (AOT) compilation. This helps optimize the size of the built iOS player.
Strip Engine Code Enable this option if you want the Unity Linker tool to remove code for Unity Engine features that your Project doesn’t use. This setting is only available with the IL2CPP scripting backend. Most apps do not use every available DLL. This option strips out DLLs that your app doesn’t use to reduce the size of the built Player. If your app is using one or more classes that would normally be stripped out under your current settings, Unity displays a debug message when you try to build the app.
Managed Stripping Level Chooses how aggressively Unity strips unused managed (C#) code. When Unity builds your app, the Unity Linker process can strip unused code from the managed DLLs your Project uses. Stripping code can make the resulting executable smaller, but can sometimes remove code that’s in use.

For more information about these options and bytecode stripping with IL2CPP, refer to ManagedStrippingLevel.
Minimal Use this to strip class libraries, UnityEngine, Windows Runtime assemblies, and copy all other assemblies.
Low Remove unreachable managed code to reduce build size and Mono/IL2CPP build times.
Medium Run UnityLinker to reduce code size beyond what Low can achieve. You might need to support a custom link.xml file, and some reflection code paths might not behave the same.
High UnityLinker will strip as much code as possible. This will further reduce code size beyond what Medium can achieve but managed code debugging of some methods might no longer work. You might need to support a custom link.xml file, and some reflection code paths might not behave the same.
Script Call Optimization Choose how to disable exception handling for a speed boost at runtime. For more information, refer to iOS Optimization.
Vertex Compression Sets vertex compression per channel. This affects all the meshes in your project.
Typically, Vertex Compression is used to reduce the size of mesh data in memory, reduce file size, and improve GPU performance.

For more information on how to configure vertex compression and limitations of this setting, refer to Compressing mesh data.
Optimize Mesh Data Enable this option to strip unused vertex attributes from the mesh used in a build. This option reduces the amount of data in the mesh, which can help reduce build size, loading times, and runtime memory usage.

Warning: If you have this setting enabled, don’t change material or shader settings at runtime.

For more information, refer to PlayerSettings.stripUnusedMeshComponents.
Texture MipMap Stripping Enables mipmap stripping for all platforms. It strips unused mipmaps from Textures at build time.
Unity determines unused mipmaps by comparing the value of the mipmap against the quality settings for the current platform. If a mipmap value is excluded from every quality setting for the current platform, then Unity strips those mipmaps from the build at build time. If QualitySettings.masterTextureLimit is set to a mipmap value that has been stripped, Unity will set the value to the closest mipmap value that hasn’t been stripped.

Stack Trace

Select your preferred logging type by enabling the option that corresponds to each Log Type.

属性 描述
No logs are ever recorded.
ScriptOnly Logs only when running scripts.
Full Logs all the time.

For more information, refer to stack trace logging.

Legacy

属性 描述
Clamp BlendShapes (Deprecated) Activate the option to clamp the range of blend shape weights in SkinnedMeshRenderers.

PlayerSettingsiOS

iOS environment setup
Developing for iOS