iOS中SFSafarViewController的使用
2020-04-24 本文已影响0人
忆一曲肝肠断
有时候我们在写隐私政策页面或者文字很多的页面时,如果只是一个链接,我们不妨用用SFSafarViewController这个类,还能控制亮度颜色,文字的大小,用法也很简单
导入头文件,实现代理方法,写入网址
#import <SafariServices/SafariServices.h>
<SFSafariViewControllerDelegate>
- (void)Saferbtnclick{
SFSafariViewController *sfVC = [[SFSafariViewController alloc]initWithURL:[NSURL URLWithString:@"http://www.parking24.cn/appleprivacy.html"]];
sfVC.delegate=self;
[self presentViewController:sfVC animated:YES completion:nil];
}