【发布时间】:2016-08-09 06:58:52
【问题描述】:
我正在尝试几种这样的解决方案来使我的 UITableView 透明
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
tableView.backgroundColor=UIColor.clearColor()
let cell = tableView.dequeueReusableCellWithIdentifier("signCell", forIndexPath: indexPath) as! SignUpTableViewCell
cell.backgroundColor=UIColor.clearColor()
cell.signInfo.text="Mee"
return cell
}
我也让我的文字透明,但之后的表格和文字消失了。
【问题讨论】:
-
tableView.backgroundColor=UIColor.clearColor()
-
@Anbu.Karthik 我想要快速解决方案
-
@Chirag Patel 这就是我要做的,表格和文字消失了我只想让表格透明
标签: ios uitableview uitextfield