• 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
iOS: UITableViewCell an textlabel?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

iOS: UITableViewCell an textlabel?


  • Subject: iOS: UITableViewCell an textlabel?
  • From: sebi <email@hidden>
  • Date: Tue, 3 Aug 2010 19:24:58 +0200

Hello,

In my project (iPad) I use a UITableViewCell subclass. The problem is, that the built in textLabel doesn't show the text.
Here is some test code:

-(void)setText:(NSString*)text {
	CGRect r;
	r.origin.x = 30;
	r.origin.y = 5;
	r.size.width = self.bounds.size.width - 50;
	r.size.height = self.bounds.size.height - 10;
//	self.textLabel.frame = r;
//	self.textLabel.text = @"xxx";
	UILabel* textLabel = [[UILabel alloc] initWithFrame:r];
	textLabel.text = @"xxx";
	[self addSubview:textLabel];
	[textLabel release];
}

when I uncomment the two lines and comment out the last three lines it doesn't work, no text visible. The _textLabel member of the UITableViewCell superclass is not nil and its parameters are set correctly.
I mean, it works now (I have to make my textLabel a member and add it only once as a subview of course) but I would still be interested what I am doing wrong.

Thanks and regards,
Sebastian Mecklenburg_______________________________________________

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: iOS: UITableViewCell an textlabel?
      • From: sebi <email@hidden>
    • Re: iOS: UITableViewCell an textlabel?
      • From: Bill Garrison <email@hidden>
  • Prev by Date: [Q] Enter Key & HIG
  • Next by Date: Re: Search Kit memory management
  • Previous by thread: Re: [Q] Enter Key & HIG
  • Next by thread: Re: iOS: UITableViewCell an textlabel?
  • Index(es):
    • Date
    • Thread