2011-05-16 37 views

回答

5

OpenGL只绘制东西到屏幕上。没有几何对象的概念。因此,您必须检测链接文本的点击并调用相应的iOS API来调用URL。

0

好吧,我想我找到它:

NSURL *url = [NSURL URLWithString:@"http://www.iphonedevelopertips.com"]; 

[[UIApplication sharedApplication] openURL:url]; 
相关问题