• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Placing an Image next to a UI element
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Placing an Image next to a UI element


  • Subject: Placing an Image next to a UI element
  • From: David Mirabito <email@hidden>
  • Date: Fri, 25 Nov 2011 13:45:36 +0000

Hello,

I am trying to place an InvalidData icon next to offending input elements (popup menus, text fields, etc). I calculate the position of the new NSImageVIew based on the frame of the UI element. Keep it's vertical placement, and shift the icon to the left if it, plus a small constant spacing amount, and make square.

    NSView *aview = theOffendingNSTextView;

    NSView *superView = [aview superview];

    NSRect oldframe = [aview frame];

    NSRect newFrame = NSMakeRect(
            oldframe.origin.x + oldframe.size.width + 26,
                                 oldframe.origin.y,
                                 oldframe.size.height,
                                 oldframe.size.height);

    NSImageView *img = [[NSImageView alloc] initWithFrame:newFrame];
    [img setImage:[NSImage imageNamed:@"NSInvalidDataFreestandingTemplate"]];

    [superView addSubview:img];

This works the horizontal positioning just fine, but the vertical placement is always to far down the parent view (superView).

Interestingly, if I use IB to place an icon next to the popup field, XCode tells me its coordinates would exactly match the ones I calculate. Yet using them to initWithFrame results in the icon being too far down.

If I trial-and-error to find a frame value which places the icon properly, it ends up being 170 units larger than what I expect it to be (both from the above calculation and seeing where it would be if I placed in XCode).

I have a draft email saved with much more details (how I'm placing the view, and concrete values for various frames, etc) but I thought first I'd check to see if there's anything obviously wrong I'm doing. Is there?

I suppose I could always fall back to placing the invalid icons manually, and bind their visible/hidden attribute to the validation results, but that seems overkill. Is there a "more proper" way to achieve my goals that what I'm attempting?

Thanks,
DavidM_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Placing an Image next to a UI element
      • From: Fritz Anderson <email@hidden>
    • Re: Placing an Image next to a UI element
      • From: Fritz Anderson <email@hidden>
  • Prev by Date: Re: NSNumberFormatter Strangeness
  • Next by Date: Re: Is there an easier way of changing NSButtonCell state in an NSOutlineView
  • Previous by thread: How to make QTMovieView transparent for mouse? How to set a custom "buffering picture"?
  • Next by thread: Re: Placing an Image next to a UI element
  • Index(es):
    • Date
    • Thread