I would like to make some words in the cell invisible or visible. This is my code below.
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
cell = tableView.dequeueReusableCell(withIdentifier: "cell") as? TableViewCell
var dic = ar[indexPath.row]
cell!.cell0.text = dic["date0"]
...
cell!.cell0.text
has "Helloworld"
I need "Helloworld" for later so I can't get only "world" from dic["date0"]
.
I would like to make only "world" visible in the table view.
Is there anyone who can help me out? Thanks!