Re: Custom UITableView cell label with ARC and storyboards

2012-07-29 Thread Alex Zavatone
Thanks. I moved the resizing of the frame in a method in the custom cell class instead of in the TVC's cellForRowAtIndexPath. What is strange is that I call it from the TVC's cellForRowAtIndexPath and it works just fine, but didn't do anything when in the TVC's cellForRowAtIndexPath. Not exac

Re: Custom UITableView cell label with ARC and storyboards

2012-07-29 Thread David Duncan
On Jul 29, 2012, at 7:55 PM, Alex Zavatone wrote: > > On Jul 29, 2012, at 10:48 PM, David Duncan wrote: > >> On Jul 29, 2012, at 7:38 PM, Alex Zavatone wrote: >> >>> >>> On Jul 29, 2012, at 10:30 PM, David Duncan wrote: >>> On Jul 29, 2012, at 7:02 PM, Alex Zavatone wrote:

Re: Custom UITableView cell label with ARC and storyboards

2012-07-29 Thread Alex Zavatone
On Jul 29, 2012, at 10:48 PM, David Duncan wrote: > On Jul 29, 2012, at 7:38 PM, Alex Zavatone wrote: > >> >> On Jul 29, 2012, at 10:30 PM, David Duncan wrote: >> >>> On Jul 29, 2012, at 7:02 PM, Alex Zavatone wrote: >>> I've put together a TVC with a custom TVC cell class consisting m

Re: Custom UITableView cell label with ARC and storyboards

2012-07-29 Thread David Duncan
On Jul 29, 2012, at 7:38 PM, Alex Zavatone wrote: > > On Jul 29, 2012, at 10:30 PM, David Duncan wrote: > >> On Jul 29, 2012, at 7:02 PM, Alex Zavatone wrote: >> >>> I've put together a TVC with a custom TVC cell class consisting mainly of >>> UILabels, but have the problem where the labels

Re: Custom UITableView cell label with ARC and storyboards

2012-07-29 Thread Alex Zavatone
On Jul 29, 2012, at 10:30 PM, David Duncan wrote: > On Jul 29, 2012, at 7:02 PM, Alex Zavatone wrote: > >> I've put together a TVC with a custom TVC cell class consisting mainly of >> UILabels, but have the problem where the labels will have varying amounts of >> lines of text. >> >> The mai

Re: Custom UITableView cell label with ARC and storyboards

2012-07-29 Thread David Duncan
On Jul 29, 2012, at 7:02 PM, Alex Zavatone wrote: > I've put together a TVC with a custom TVC cell class consisting mainly of > UILabels, but have the problem where the labels will have varying amounts of > lines of text. > > The main issue is that in iOS 5.x, UILabels still can't be verticall

Custom UITableView cell label with ARC and storyboards

2012-07-29 Thread Alex Zavatone
I've put together a TVC with a custom TVC cell class consisting mainly of UILabels, but have the problem where the labels will have varying amounts of lines of text. The main issue is that in iOS 5.x, UILabels still can't be vertically aligned to the top. There is a fair amount of source tha