Skip to content
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

Update Swift collection view interop example #1837

Merged
merged 2 commits into from
May 26, 2020
Merged
Changes from 1 commit
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
8 changes: 6 additions & 2 deletions docs/_docs/uicollectionviewinterop.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,12 @@ For this example, the data source method `collectionNode:nodeBlockForItemAtIndex
</pre>

<pre lang="swift" class = "swiftCode hidden">
// Click the "Edit on GitHub" button at the bottom of this
// page to contribute the swift code for this section. Thanks!
bolsinga marked this conversation as resolved.
Show resolved Hide resolved
// Setting the return type to implicitly unwrapped optional
// helps overcome compiler error when trying to return nil
func collectionNode(_ collectionNode: ASCollectionNode,
nodeBlockForItemAt indexPath: IndexPath) -> ASCellNodeBlock! {
return optionalNode
}
</pre>
</div>
</div>
Expand Down