0

Is it possible to send an url via image by clicking the image, then opening the browser, for an app on the iPhone?

I'm using Xcode 4.4

Thanks.

4

1 回答 1

1

是的,这是可能的。

第一个 A) 向 UIView 添加一个gestureRecognizer 并使用以下两行代码...

1st B)或使用带有背景图像的按钮并使用以下两行代码...

NSURL *url = [NSURL URLWithString:@"http://www.stackoverflow.com"];
[[UIApplication sharedApplication] openURL:url];

还有其他问题吗?

于 2012-07-31T16:39:10.570 回答