First of all I'm using storyboards. Currently this is an iPhone application, but in the future an iPad equivalent will also be made.
I have a UITableView containing 'People'. When clicked on them it goes to a detail page containing info on that person. That detail view consists of a UIImageView (Photo of that Person) UILabel,... AND a UITableView with 'Related' data.
That related data is: PhoneNumbers, e-mail addresses and companies for which that person works.
For the phone number and e-mail address I want a button on the cell. Pressing that button will either send the number to the phone application or the e-mail address to an e-mail form. Pressing a cell containing a company should segue to another view containing details about that company.
What is the best way to implement a button and a segue to make sure that the app doesn't "segue' to another screen when a phone number/e-mail is selected.