1. 字體大小:html
UITableViewCellStyleSubtitle:ide
textLabel: Helvetica Bold, size: labelFontSize+1 (18 px)
detailsLabel: Helvetica, size: systemFontSize (14 px)字體
UITableViewCellStyleValue1:ui
textLabel: Helvetica Bold, size: labelFontSize (17 px)
detailsLabel: Helvetica Bold, size: systemFontSize+1 (15 px)spa
UITableViewCellStyleValue2:.net
textLabel: Helvetica Bold, size: smallSystemFontSize (12 px)
detailsLabel: Helvetica, size: labelFontSize (17 px)code
設置大小時,用 [UIFont SystemFontofSize:] 或者 [UIFont BoldSystemFontofSize:]htm
2. 不一樣樣式的顯示效果:blog
3. 自定義 cell:get
對於 UITableViewCell 而言,其 accessoryType屬性有4種取值:
cell.accessoryType = UITableViewCellAccessoryNone;//cell沒有任何的樣式 cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;//cell的右邊有一個小箭頭,距離右邊有十幾像素; cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;//cell右邊有一個藍色的圓形button; cell.accessoryType = UITableViewCellAccessoryCheckmark;//cell右邊的形狀是對號;
除此以外,若是你想使用自定義附件按鈕的其餘樣式,必需使用UITableView 的 accessoryView 屬性。
5.