adding some margin below section header text of a UITableView
问题 I have styled the header text: func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as? TableViewCell cell!.titleLabel!.text = sections[indexPath.section].objects[indexPath.row].name cell!.datetimeLabel!.text = "on " + sections[indexPath.section].objects[indexPath.row].date return cell! } func tableView(tableView: UITableView, heightForHeaderInSection