I want to get index's number of UI table Cell and use it as tittel in table cell lable text my output should look like this output
Visit #1 Visit #2 Visit #3 Visit #4
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{
let cell:UITableViewCell = tableView.dequeueReusableCellWithIdentifier("cell")! as UITableViewCell
cell.textLabel?.text = "visit#\(visits[indexPath.row])"<-- this line
return cell
}
indexPath.rowcell.textLabel?.text= "Visit #\(indexPath.row+1)"