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

  • SEARCH
  • Home
  • 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 6745793
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T12:14:48+00:00 2026-05-26T12:14:48+00:00

I have a NSView, there is a NSImageView on the NSView in the source

  • 0

I have a NSView, there is a NSImageView on the NSView

in the source codes of the NSView

I wrote:

NSImage *image = [[[NSImage alloc] initWithContentsOfURL:url] autorelease];
NSImageView *newImageView = nil;
newImageView = [[NSImageView alloc] initWithFrame:[self bounds]];
[newImageView setImage:image];
[newImageView setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];

Is there a way to read the width and height of the NSView and NSImageView?

  • 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-26T12:14:48+00:00Added an answer on May 26, 2026 at 12:14 pm

    The size of any view (NSView, NSImageView, etc.) is view.frame.size or view.bounds.size.
    In both cases it is an identical NSSize struct. You can write code like this:

    NSSize size = newImageView.frame.size;
    NSLog(@"size: %@", NSStringFromSize(size));
    NSLog(@"size: %f x %f", size.width, size.height);
    

    To change it, you need to update the view frame property:

    NSRect frame = view.frame;
    frame.size = NSMakeSize(<#new width#>, <#new height#>);
    view.frame = frame;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an NSView in which the user can draw circles. These circles are
I have question about NSView: Imagine a Custom View where the mouseDown, mouseDrag and
I have a custom NSView which contains a subview—for the purposes of solving this
The problem I have a transparent NSView on a transparent NSWindow . The view's
I have a window with an subclass of NSView in it. Inside the view,
I have a window which has a custom NSView and has a bottom bar
I have drawn an object on NSView subclass. How can the object know that
I have a NSView which contains many CALayers. When a user is editing a
Here is the idea: I have a NSWindow containing 2 NSView, let's call them
Here's the scenario - I have created a custom NSView subclass, and the implementation

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.