// Format section headeroverrIDe func tableVIEw(tableVIEw: UItableVIEw,willdisplayheaderVIEw vIEw: UIVIEw,forSection section: Int) { let header: UItableVIEwheaderfooterVIEw = vIEw as! UItableVIEwheaderfooterVIEw header.contentVIEw.backgroundcolor = maincolorBlue header.textLabel.textcolor = UIcolor.whitecolor() header.textLabel.textAlignment = NSTextAlignment.left header.textLabel.numberOflines = 0 // Dynamic number of lines header.textLabel.lineBreakMode = NSlineBreakMode.ByWorDWrapPing header.textLabel.Font = UIFont(name: "HelveticaNeue-Thin",size: 16)! header.textLabel.text = objectsArray[section].sectionname}我做相反的事情我将行数设置为一个巨大的数字,然后动态大小工作.
>在IB
>不要设置任何WIDTH / HEIGHT常数
> tableVIEwCells中只有前导跟踪/顶部/底部控件
self.tableVIEw.sectionheaderHeight = UItableVIEwautomaticDimension;
self.tableVIEw.estimatedSectionheaderHeight = 25;
- (voID)vIEwDIDLoad{ [super vIEwDIDLoad]; //----------------------------------------------------------------------------------- //DYNAMIC TEXT and table ROW HEIGHT //----------------------------------------------------------------------------------- self.tableVIEw.estimatedRowHeight = 80.0f; //also done in heightForRowAtIndexPath self.tableVIEw.rowHeight = UItableVIEwautomaticDimension; self.tableVIEw.sectionheaderHeight = UItableVIEwautomaticDimension; self.tableVIEw.estimatedSectionheaderHeight = 80.0f;}//comment out//- (CGfloat)tableVIEw:(UItableVIEw *)tableVIEw heightForheaderInSection:(NSInteger)section {
也可以看看
Is it possible to obtain a dynamic table view section header height using Auto Layout?
以上是内存溢出为你收集整理的swift – 表格标题:多行/自动换行全部内容,希望文章能够帮你解决swift – 表格标题:多行/自动换行所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)