我正在使用Storyboard构建一个相当简单的Tabel View Controller,其中一些单元格将包含电子邮件地址。
如何制作这些超链接?
正如我所说,我主要使用Storyboard来创建这些视图,因此相应的代码是XML格式。我应该把我的“href = mailto:”标签放在哪里?
答案 0 :(得分:1)
您可以使用委托方法:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
然后确定该行中的数据,然后您需要:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://blah"]];
或者,您可以使用MFMailComposeViewController。在这里阅读更多内容: