设置表格图片圆角
override func tableView(tableView: UITableView,cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("Cell",forIndexPath: indexPath) as! CustomTableViewCell
// 设置图片圆角
cell.rtImage.layer.cornerRadius = cell.rtImage.frame.size.width / 2
cell.rtImage.clipsToBounds = true
return cell
}