René's URL Explorer Experiment


Title: fix(ios): guard interactiveContentPopGestureRecognizer for apps built with pre-26 SDKs by edusperoni · Pull Request #11313 · NativeScript/NativeScript · GitHub

Open Graph Title: fix(ios): guard interactiveContentPopGestureRecognizer for apps built with pre-26 SDKs by edusperoni · Pull Request #11313 · NativeScript/NativeScript

X Title: fix(ios): guard interactiveContentPopGestureRecognizer for apps built with pre-26 SDKs by edusperoni · Pull Request #11313 · NativeScript/NativeScript

Description: PR Checklist The PR title follows our guidelines: https://github.com/NativeScript/NativeScript/blob/master/tools/notes/CONTRIBUTING.md#commit-messages. There is an issue for the bug/feature this PR is for. To avoid wasting your time, it's best to open a suggestion issue first and wait for approval before working on it. You have signed the CLA. All existing tests are passing: https://github.com/NativeScript/NativeScript/blob/master/tools/notes/DevelopmentWorkflow.md#running-unit-tests-application. Tests for the changes are included - https://github.com/NativeScript/NativeScript/blob/master/tools/notes/WritingUnitTests.md. What is the current behavior? The iOS 26 support added for UINavigationController.interactiveContentPopGestureRecognizer gates the property access purely on the runtime OS version (SDK_VERSION >= 26): if (SDK_VERSION >= 26) { navigationController.interactiveContentPopGestureRecognizer.enabled = owner.enableSwipeBackNavigation; } interactiveContentPopGestureRecognizer only exists in the iOS 26 SDK. When an app is built with an older Xcode/SDK (e.g. Xcode 16 / iOS 18 SDK) but run on iOS 26+, that property is absent from the NativeScript-generated ObjC metadata — metadata is derived from the build SDK's headers, not the runtime OS. So the property access returns undefined, and setting .enabled on it throws: TypeError: Cannot set properties of undefined (setting 'enabled') crashing the app on the first page navigation. This was hit in real CI: an app built with Xcode 16 running on the iOS 26.2 simulator (NativeScript/angular CI). What is the new behavior? Guard the interactiveContentPopGestureRecognizer access with an existence check in addition to the runtime version check, so it is only touched when the property is actually present in the metadata: if (SDK_VERSION >= 26 && navigationController.interactiveContentPopGestureRecognizer) { ... } This mirrors the guard already used in _updateEnableSwipeBackNavigation, making iOS 26 runtime safe for apps built with pre-26 SDKs. The legacy interactivePopGestureRecognizer lines are unchanged (that API exists on all supported versions).

Open Graph Description: PR Checklist The PR title follows our guidelines: https://github.com/NativeScript/NativeScript/blob/master/tools/notes/CONTRIBUTING.md#commit-messages. There is an issue for the bug/feature this...

X Description: PR Checklist The PR title follows our guidelines: https://github.com/NativeScript/NativeScript/blob/master/tools/notes/CONTRIBUTING.md#commit-messages. There is an issue for the bug/feature this...

Opengraph URL: https://github.com/NativeScript/NativeScript/pull/11313

X: @github

direct link

Domain: Github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:18c5b832-bcba-a535-9790-d3fac7cf5f20
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idDCE8:12EAEE:A4E61F:EB77D9:6A63856B
html-safe-nonceb9e44c57929b4c92a67379432425cc28e5ea634b280942a72ade1c13f84e2801
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEQ0U4OjEyRUFFRTpBNEU2MUY6RUI3N0Q5OjZBNjM4NTZCIiwidmlzaXRvcl9pZCI6IjE0NTg5Nzg5ODYxMTkxMDM4NTEiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac1229422576eb6fb5e03e5499fd512071d7222cad5334ebce115147d8380f8c64
hovercard-subject-tagpull_request:4117896416
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/NativeScript/NativeScript/pull/11313/files
twitter:imagehttps://avatars.githubusercontent.com/u/4061767?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/4061767?s=400&v=4
og:image:altPR Checklist The PR title follows our guidelines: https://github.com/NativeScript/NativeScript/blob/master/tools/notes/CONTRIBUTING.md#commit-messages. There is an issue for the bug/feature this...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Nonee4fb64aef87da454ec25b158147f7f5f14aef29216e5ca1612c2e48faa599d1f
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/NativeScript/NativeScript git https://github.com/NativeScript/NativeScript.git
octolytics-dimension-user_id7392261
octolytics-dimension-user_loginNativeScript
octolytics-dimension-repository_id31492490
octolytics-dimension-repository_nwoNativeScript/NativeScript
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id31492490
octolytics-dimension-repository_network_root_nwoNativeScript/NativeScript
turbo-body-classeslogged-out env-production page-responsive
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasee839936ba5faffb9c836dda1cf4729d50c88a32e
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://Github.com/NativeScript/NativeScript/pull/11313/files#start-of-content
https://Github.com/
Sign in https://Github.com/login?return_to=https%3A%2F%2Fgithub.com%2FNativeScript%2FNativeScript%2Fpull%2F11313%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://Github.com/login?return_to=https%3A%2F%2Fgithub.com%2FNativeScript%2FNativeScript%2Fpull%2F11313%2Ffiles
Sign up https://Github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=NativeScript%2FNativeScript
Reloadhttps://Github.com/NativeScript/NativeScript/pull/11313/files
Reloadhttps://Github.com/NativeScript/NativeScript/pull/11313/files
Reloadhttps://Github.com/NativeScript/NativeScript/pull/11313/files
Please reload this pagehttps://Github.com/NativeScript/NativeScript/pull/11313/files
NativeScript https://Github.com/NativeScript
NativeScripthttps://Github.com/NativeScript/NativeScript
Please reload this pagehttps://Github.com/NativeScript/NativeScript/pull/11313/files
Notifications https://Github.com/login?return_to=%2FNativeScript%2FNativeScript
Fork 1.7k https://Github.com/login?return_to=%2FNativeScript%2FNativeScript
Star 25.6k https://Github.com/login?return_to=%2FNativeScript%2FNativeScript
Code https://Github.com/NativeScript/NativeScript
Issues 771 https://Github.com/NativeScript/NativeScript/issues
Pull requests 66 https://Github.com/NativeScript/NativeScript/pulls
Discussions https://Github.com/NativeScript/NativeScript/discussions
Actions https://Github.com/NativeScript/NativeScript/actions
Projects https://Github.com/NativeScript/NativeScript/projects
Wiki https://Github.com/NativeScript/NativeScript/wiki
Security and quality 0 https://Github.com/NativeScript/NativeScript/security
Insights https://Github.com/NativeScript/NativeScript/pulse
Code https://Github.com/NativeScript/NativeScript
Issues https://Github.com/NativeScript/NativeScript/issues
Pull requests https://Github.com/NativeScript/NativeScript/pulls
Discussions https://Github.com/NativeScript/NativeScript/discussions
Actions https://Github.com/NativeScript/NativeScript/actions
Projects https://Github.com/NativeScript/NativeScript/projects
Wiki https://Github.com/NativeScript/NativeScript/wiki
Security and quality https://Github.com/NativeScript/NativeScript/security
Insights https://Github.com/NativeScript/NativeScript/pulse
Sign up for GitHub https://Github.com/signup?return_to=%2FNativeScript%2FNativeScript%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://Github.com/login?return_to=%2FNativeScript%2FNativeScript%2Fissues%2Fnew%2Fchoose
NathanWalkerhttps://Github.com/NathanWalker
mainhttps://Github.com/NativeScript/NativeScript/tree/main
fix/ios-content-pop-gesture-guardhttps://Github.com/NativeScript/NativeScript/tree/fix/ios-content-pop-gesture-guard
Conversation 1 https://Github.com/NativeScript/NativeScript/pull/11313
Commits 1 https://Github.com/NativeScript/NativeScript/pull/11313/commits
Checks 6 https://Github.com/NativeScript/NativeScript/pull/11313/checks
Files changed 1 https://Github.com/NativeScript/NativeScript/pull/11313/files
fix(ios): guard interactiveContentPopGestureRecognizer for apps built with pre-26 SDKs https://Github.com/NativeScript/NativeScript/pull/11313/files#top
Show all changes 1 commit https://Github.com/NativeScript/NativeScript/pull/11313/files
66bf8c9 fix(ios): guard interactiveContentPopGestureRecognizer for apps built… edusperoni Jul 23, 2026 https://Github.com/NativeScript/NativeScript/pull/11313/commits/66bf8c9c1ae4e66f6b368d8d04ad0ca4691f526f
Clear filters https://Github.com/NativeScript/NativeScript/pull/11313/files
Please reload this pagehttps://Github.com/NativeScript/NativeScript/pull/11313/files
Please reload this pagehttps://Github.com/NativeScript/NativeScript/pull/11313/files
packages/core/ui/page/index.ios.tshttps://Github.com/NativeScript/NativeScript/pull/11313/files#diff-e10bced30a590017c0d42bb1d654b00cc718c5e7385bd6bb797d8dcf5d8bb11c
View file https://Github.com/NativeScript/NativeScript/blob/66bf8c9c1ae4e66f6b368d8d04ad0ca4691f526f/packages/core/ui/page/index.ios.ts
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://Github.com/NativeScript/NativeScript/pull/11313/{{ revealButtonHref }}
https://Github.com/NativeScript/NativeScript/pull/11313/files#diff-e10bced30a590017c0d42bb1d654b00cc718c5e7385bd6bb797d8dcf5d8bb11c
https://Github.com/NativeScript/NativeScript/pull/11313/files#diff-e10bced30a590017c0d42bb1d654b00cc718c5e7385bd6bb797d8dcf5d8bb11c
Please reload this pagehttps://Github.com/NativeScript/NativeScript/pull/11313/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.