question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

iOS View Hierarchy implements unneeded views

See original GitHub issue

Did you verify this is a real problem by searching Stack Overflow and the other open issues in this repo?

Yes

Tell us about the problem

The view hierarchy through NativeScript doesn’t correlate 1 to 1 for native. Instead it requires a dependency of a wrapping view to accomplish simplistic UI.

Example Scenario

Implementing a web view with a label that overlays the webview (used for tap gestures).

On a true Swift/iOS application, you can append the WebView and UILabel directly to the UIView. The view hierarchy looks something like:

screen shot 2017-08-20 at 9 27 34 pm

This makes sense. The page is respective to a UIView and adding children to the view, directly apply to that view. No nesting, clean and minimal.

Now reproducing that exact same scenario in NativeScript…it’s not immediately possible. The page object requires you wrap your elements under a single layout. This introduces a dummy UIView which requires allocating memory for no “known” good reason.

So, in order to accomplish the exact same scenario in NativeScript we have to do this:

Page // UIView
    GridLayout // UIView
        WebView
        Label

Programmatically you can assign the content of the page, but still there doesn’t seem to be a clear way to accomplish the same scenario, unless you get down into the iOS code.

I’m a little confused why the framework has a dependency on creating a wrapping layout, when you can already directly append to the page’s UIView? The only way we can accomplish a flat hierarchy is by having a single content view attached to the page.

Which platform(s) does your issue occur on?

iOS

Please provide the following version numbers that your issue occurs with:

  • CLI: 3.1.2
  • Cross-platform modules: 3.1.1
  • Runtime(s): 3.1.0

Please tell us how to recreate the issue in as much detail as possible.

See above.

Is there code involved? If so, please share the minimal amount of code needed to recreate the problem.

<Page xmlns="http://schemas.nativescript.org/tns.xsd" navigatingTo="onNavigatingTo" class="page">

    <Page.actionBar>
        <ActionBar title="My App" icon="" class="action-bar">
        </ActionBar>
    </Page.actionBar>

    <WebView width="100%" height="100%" src="https://www.google.com"></WebView>
    <Label height="80" text="Testing" />
</Page>

You’ll notice the WebView is never rendered. You have to wrap the elements with a StackLayout for it to be visible.

Example of the view hierarchy with the above code.

screen shot 2017-08-20 at 9 50 16 pm

Although memory is not the point of this issue the x2 difference of Native to NativeScript is worth mentioning.

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

2reactions
hshristovcommented, Aug 21, 2017

Hey guys,

First thing to notice is that we are doing cross platform framework. So while in iOS every view could have multiple views on android only ViewGroup could have sub views. So with that in mind we can’t add subviews to all views.

Another major reason is the layout. Even if we do all controls as ViewGroup underneath how do we position them? Should we stack them or use absolute positioning? Or default to flexbox layout?

That is why we have Layout containers that support multiple children and knows how to position them and single child containers like Page, ContentControl, Border, etc.

I agree that deep nesting is against performance recommendations of Google but removing this one element won’t change the app responsiveness.

Hope that this clarifies why we need that one additional view.

Let me know if something is unclear or if you need more details.

0reactions
lock[bot]commented, Aug 28, 2019

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Auto Layout Guide: Debugging Tricks and Tips
Xcode provides tools that help you visualize the views and the constraints in your view hierarchy. To see the views in the simulator:....
Read more >
Is deeply nested view hierarchy in iOS ok? - Stack Overflow
Views in iOS are backed by OpenGL and have amazing performance. I've personality gone as deep as 50 views with no problems.
Read more >
1. Views - Programming iOS 8 [Book] - O'Reilly
This hierarchy allows views to come and go together. If a view is removed from the interface, its subviews are removed; if a...
Read more >
Debug your iOS app views with the invaluable Spark Inspector
Once installed in your Xcode project, the framework will send visual and view hierarchy information from your device to the Spark Inspector ...
Read more >
SwiftUI: Observables, View Hierarchy, and Putting Them All ...
What would be great is if we could keep that value alongside the profile—that way, we could navigate to and from different Views...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found