一,效果图。
二,工程图。
三,代码。
RootViewController.m
class="cnblogs_code_copy" style="font-size: 14pt;">- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
self.title=@"评分,支持我们";
}
//点击任何处,跳转到产品的页面。
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
NSString *urlString=@"http://www.baidu.com";
NSURL* url = [NSURL URLWithString:urlString];
[[UIApplication sharedApplication] openURL:url];
}