Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6760969
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:07:44+00:00 2026-05-26T14:07:44+00:00

Currently, I am trying to get the coordinates of a UIWebView . This webView

  • 0

Currently, I am trying to get the coordinates of a UIWebView. This webView is the subview a viewController’s view. The viewController is contained inside of a UINavigationController. The status bar and the navigation bar are both on screen.

The orientation is portrait. The view has been presented modally.

With the height of status bar at 20 and the height of navigation bar at 44, I would expect the frame of the webView (in window coordinates) would have an origin at (0, 64) and a width of (320, 416).

However, when I run this line

CGRect frame = [webView.superview convertRect:webView.frame toView:nil];

I get an origin of (0, 0) and a width of (320, 416).

Any ideas what I need to do to get the correct origin I am expecting? Am I using this method incorrectly? Or are my expectations wrong for some reason?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T14:07:44+00:00Added an answer on May 26, 2026 at 2:07 pm

    This is quite strange intact. I did a test with a very basic application made of a window, a navigation controller, a view controller and a web view. All created programmatically. The code is the following and at the end I plot all view frames while at the end I plot the converted rect:

    
    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
        self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
        // Override point for customization after application launch.
    
        UIViewController *vc = [[UIViewController alloc] initWithNibName:nil bundle:nil];
        UIWebView *wv = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 416)];
        [wv loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com"]]];
        [vc.view addSubview:wv];
        UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:vc];
        self.window.rootViewController=nc;
        self.window.backgroundColor = [UIColor whiteColor];
        [self.window makeKeyAndVisible];
    
        NSLog(@"W: %@",NSStringFromCGRect(self.window.bounds));
        NSLog(@"NC: %@",NSStringFromCGRect(nc.view.frame));
        NSLog(@"VC: %@",NSStringFromCGRect(vc.view.frame));
        NSLog(@"WV: %@",NSStringFromCGRect(wv.frame));
    
        NSLog(@"WV->WIN: %@",NSStringFromCGRect([wv.superview convertRect:wv.frame toView:nil]));
    
        return YES;
    }
    

    The results are the following:

    W: {{0, 0}, {320, 480}}
    NC: {{0, 0}, {320, 480}}
    VC: {{0, 0}, {320, 416}}
    WV: {{0, 0}, {320, 416}}
    WV->WIN: {{0, 64}, {320, 416}}
    

    which are the one you were expecting. Probably you’re doing some mistake in the way the views are placed in the hierarchy. Are you for example using Interface Builder and in such case can you check that you didn’t put the wrong coordinates in the view positions?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm currently trying to work out how to get world coordinates from JOGL -
I'm currently trying to get this image-map to work: <img src=products1.png usemap=products1-map style=margin-bottom: 36px
I'm trying to get the mouse coordinates during a jQuery animation, I'm doing this
I'm currently trying to get into the Java EE development with the Spring framework.
I'm currently trying to get a UISlider to work. I'm trying to set the
I'm currently trying to get the output of an executable console-app into an other
I am currently trying to get data out of a plist. It basically looks
I'm currently trying to get a grip on Android development and working my way
i am currently trying to get Input Mode Editor (IME) support working with a
Heya, I'm currently trying to get bltoolkit working in my project. I've added the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.