• 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
Re: UIView, UILabel, and sizeToFit
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: UIView, UILabel, and sizeToFit


  • Subject: Re: UIView, UILabel, and sizeToFit
  • From: Roland King <email@hidden>
  • Date: Thu, 29 Apr 2010 09:14:32 +0800



- (void)setRepresentedObject:(NSString *)aString
{
	name.text = aString;
	[name sizeToFit];
	[self sizeToFit];
	NSLog(@"Container size: %d, %d", self.frame.size.width, self.frame.size.height);
	NSLog(@"UILabel size: %d, %d", name.frame.size.width, name.frame.size.height);
}

I tried the code with both %d and %i - the results seem to be the same.

Thanks for any help you can provide!


That was Fritz' whole point, the sizes are floats, not integers so you have to use %f to print them. He wanted to see your code to ensure you were *not* using %d or %i.


As someone pointed out, there are methods NSStringFromCGRect() and NSStringFromCGPoint() which convert things to strings for you.
_______________________________________________


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: UIView, UILabel, and sizeToFit
      • From: Matt James <email@hidden>
References: 
 >UIView, UILabel, and sizeToFit (From: Matt James <email@hidden>)
 >Re: UIView, UILabel, and sizeToFit (From: Fritz Anderson <email@hidden>)
 >Re: UIView, UILabel, and sizeToFit (From: Matt James <email@hidden>)

  • Prev by Date: [MEET] May CocoaHeads Mac Developer Meetings
  • Next by Date: Re: white screen windows at first
  • Previous by thread: Re: UIView, UILabel, and sizeToFit
  • Next by thread: Re: UIView, UILabel, and sizeToFit
  • Index(es):
    • Date
    • Thread