例如,在我构建的表中,我可以通过继承UItableVIEwCell并使用手动确定的宽度(通过试验和错误)创建一个UILabel来实现我想要的结果:
CGRectMake(10,12,397,self.contentVIEw.frame.size.height);
但这就是令人烦恼的397号码.我想要一种方法来以编程方式确定任何宽度表或样式应该是什么.这应该是一个简单的过程,只需确定单元格整个框架的宽度,然后减去10或20,这样UILabel的边缘就不会实际接触到单元格的边缘.
但是,如果我将tableVIEwStyle设置为UItableVIEwStyleDefault,然后尝试:
NSLog(@"WIDth: %f",self.contentVIEw.frame.size.wIDth);
我得到320.如果我将样式设置为其他三种样式中的任何一种,则返回的数字为302.即使320数字也不是靠近单元格框架宽度的任何位置(与我手动确定的397的数字一样).
我需要访问哪个值才能返回单元格绘图框的整个宽度?我敢肯定,就像最棘手的问题一样,解决方案会让我想要在额头上打自己,但我现在已经准备好了.
编辑更多信息:
任何有兴趣的人都要澄清一下.我的这个问题主要涉及分组样式表.对于简单的样式,上面我的问题的答案可以通过cellForRowAtIndexPath方法简单地确定:
CGfloat cellWIDth = [tableVIEw rectForRowAtIndexPath:indexPath].size.wIDth;
我遇到的问题是rectForRowAtIndexPath方法返回绘制单元格的框架的宽度,这对于普通样式表来说很好,因为单元格宽度是框架的整个宽度.但是,在分组表中,单元格的宽度小于绘制它的框架的宽度,因此此方法将返回一个比单元格宽度宽得多的数字.分组表格样式中单元格的宽度可能是小于表格框架宽度的固定数字,因此这可能是解决问题的方法.如果是这样的话,我会调查并回答我自己的问题.
解决方法 我已经确定了自己的答案,我希望它可以帮助任何人面对同样的问题.我在 this StackOverflow answer.找到的分组tableVIEw的边距的计算此代码将在tableVIEw单元格中提供一个标签,该标签横跨单元格,在单元格的两个边缘之间有一个边距,并在单元格内垂直居中.
- (UItableVIEwCell *)tableVIEw:(UItableVIEw *)tableVIEw cellForRowAtIndexPath:(NSIndexPath *)indexPath{ static Nsstring *CellIDentifIEr = @"Cell"; UItableVIEwCell *cell = [tableVIEw dequeueReusableCellWithIDentifIEr:CellIDentifIEr]; UILabel *label; CGfloat groupedStylemarginWIDth,tableVIEwWIDth; UIFont *labelFont = [UIFont boldSystemFontOfSize:17.0]; // Set to whatever you like Nsstring *labelText = @"Test String"; // Calculate the margin between the cell frame and the tableVIEw // frame in a grouped table vIEw style. tableVIEwWIDth = tableVIEw.frame.size.wIDth; if (tableVIEw.style == UItableVIEwStyleGrouped) { if (tableVIEwWIDth > 20) groupedStylemarginWIDth = (tableVIEwWIDth < 400) ? 10 : MAX(31,MIN(45,tableVIEwWIDth*0.06)); else groupedStylemarginWIDth = tableVIEwWIDth - 10; } else groupedStylemarginWIDth = 0.0; if (cell == nil) { CGRect tableVIEwRect; CGRect labelRect; CGfloat x,y,w,h,labelmargin; cell = [[[UItableVIEwCell alloc] initWithStyle:UItableVIEwCellStyleDefault reuseIDentifIEr:CellIDentifIEr] autorelease]; // RetrIEve the rect of the table vIEw. tableVIEwRect = [tableVIEw rectForRowAtIndexPath:indexPath]; // Set whatever margin around the label you prefer. labelmargin = 10; // Determine rect values for the label. x = tableRect.origin.x + labelmargin; // Calculate wIDth of label w = tableRect.size.wIDth - (groupedStylemargin * 2) - (labelmargin * 2); // Calculate height of table based on Font set earlIEr. h = [labelText sizeWithFont:Font].height; // Calculate y position for the label text baseline to center // vertically within the cell. y = (tableRect.origin.y / 2) - (h / 4); labelRect = CGRectMake(x,h); label = [[UILabel alloc] initWithFrame:labelRect]; label.text = labelText; label.tag = 0; [cell.contentVIEw addSubvIEw:stepLabel]; [label release]; } else { label = (UILabel *)[cell vIEwWithTag:0]; }总结
以上是内存溢出为你收集整理的ios – 检索UITableViewCell框架全部内容,希望文章能够帮你解决ios – 检索UITableViewCell框架所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)