Okay, here’s how I have found to be able to do it:
`
class ViewController: UIViewController, UITableViewDelegate, TWTRTweetViewDelegate{
// Create a TWTRTimelineViewController elsewhere. You will need to set its table view delegate:
timelineViewController.tableView.delegate = self
// Now, when the cells are loaded with TweetViews, this function will be called
// as part of the UITableView
func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
cell.subviews[0].subviews[0].subviews[1].accessibilityValue = "whatever"
}
}