ich so mehrere Lösung Ich versuche meine UITableView transparentWie machen UITableView transparent
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
}
und ich mache meinen Text durchsichtig auch zu machen, aber die Tabelle und Text danach verschwinden.
se ths einmal http://stackoverflow.com/questions/1008246/how-to-create-a-uitableviewcell- mit-einem-transparent-hintergrund –
tableView.backgroundColor = UIColor.clearColor() –
@ Anbu.Karthik Ich möchte Lösung in swift – Sam