且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在iPhone应用程序中添加超链接?

更新时间:2023-10-19 17:20:40

It depends where you want to put this link. If it is in a UITextView, you just have to enable

textView.text = @"Some text with link in it : http://http://***.com";
textView.dataDetectorTypes = UIDataDetectorTypeLink;

More info on iOS reference library

Or if you want to open Safari programatically :

NSURL *url = [ [ NSURL alloc ] initWithString: @"http://***.com" ];
[[UIApplication sharedApplication] openURL:url];
[url release];

EDIT So if you want to share on facebook, you need to tell Safari to open an URL which will display a Facebook page that allows the user to share. Here is an example :

NSString *urlString = @"http://***.com";
//The url you want to share

NSString *title = "The Title of the Page";
//The title you want to be displayed on Facebook

NSString *shareUrlString = [NSString stringWithFormat:@"http://www.facebook.com/sharer.php?u=%@&t=%@", urlString , title];
//Create the URL string which will tell Facebook you want to share that specific page 

NSURL *url = [ [ NSURL alloc ] initWithString:shareUrlString ];
//Create the URL object 

[[UIApplication sharedApplication] openURL:url];
//Launch Safari with the URL you created

[url release];
//Release the object if you don't need it

相关阅读

推荐文章