Skip to content

Instantly share code, notes, and snippets.

@milannankov
Last active August 29, 2015 14:16
Show Gist options
  • Save milannankov/3010e570ed36be622142 to your computer and use it in GitHub Desktop.
Save milannankov/3010e570ed36be622142 to your computer and use it in GitHub Desktop.
Asorted
override func tableView(tableView: UITableView, didDeselectRowAtIndexPath indexPath: NSIndexPath)
{
// if first cell tapped
if(indexPath.row == 0)
{
var storyboard = UIStoryboard(name: "myStoryBoard", bundle: nil)
var controller = storyboard.instantiateViewControllerWithIdentifier("MycontrollerIdentifier") as UIViewController
self.presentViewController(controller, animated: true, completion: nil)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment