开启系统浏览器
#import "ViewController.h"
#import <SafariServices/SafariServices.h>
@implementation ViewController
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
// 如果公司没有特殊的界面制定要求, 当弹出网页的时候, 可以使用这里的SFSafariViewController
SFSafariViewController *sf = [[SFSafariViewController alloc] initWithURL:[NSURL URLWithString:@"https://www.baidu.com"]];
[self presentViewController:sf animated:YES completion:nil];
}
@end