Skip to content

Fix view controller class name #434

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions topics/compose/ios/compose-ios-touch.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ So, with scrollable content, if the user holds the touch, the UI interprets this
if the touch sequence is rapid, the user likely wants to interact with the parent element.

If your interop view is not meant to be interacted with, you can disable all touch processing in advance.
To do that, call the constructor for a `UIKitView` or a `UIViewController` with the `isInteractive` parameter set to `false`.
To do that, call the constructor for a `UIKitView` or a `UIKitViewController` with the `isInteractive` parameter set to `false`.

> For more complex scenarios of handling gestures inside interop views,
> use the `UIGestureRecognizer` class or its various subclasses.
Expand All @@ -45,7 +45,7 @@ To do that, call the constructor for a `UIKitView` or a `UIViewController` with

With Compose Multiplatform %composeVersion% you can also try out the experimental API for finer control over interop UI.

The new constructors for `UIKitView` or a `UIViewController` accept a `UIKitInteropProperties` object as an argument.
The new constructors for a `UIKitView` or a `UIKitViewController` accept a `UIKitInteropProperties` object as an argument.
This object allows setting:

* The `interactionMode` parameter for the given interop view, which lets you select a touch processing strategy.
Expand Down