UIAlertController
var alert=UIAlertController(title: "week", message: texts[indexPath.row], preferredStyle: .Alert)
let defaultAction = UIAlertAction(title: "OK", style: .Default, handler: nil)
alertController.addAction(defaultAction)
presentViewController(alert, animated: true, completion: nil)