objective-c – 如何从url中获取网页预览目标c

我需要设置一个这样的URL:

《objective-c – 如何从url中获取网页预览目标c》

并显示这样的事情:

《objective-c – 如何从url中获取网页预览目标c》

有可能得到这个吗?

最佳答案 使用这个库:“URLEmbeddedView”

你可以在这里找到代码:https://github.com/szk-atmosphere/URLEmbeddedView

这个库用swift编写,但你可以在objective-c中使用.

objective-c简单代码在类“OGObjcSampleViewController”中

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
    self.textView.text = @"https://github.com/";

    [OGDataProvider sharedInstance].updateInterval = [NSNumber days:10];

    self.embeddedView = [[URLEmbeddedView alloc] initWithUrl:@""];
    [self.containerView addLayoutSubview:self.embeddedView andConstraints:@[
        self.embeddedView.Top,
        self.embeddedView.Right,
        self.embeddedView.Left,
        self.embeddedView.Bottom
    ]];
}

按钮来获取网址

- (IBAction)didTapFetchButton:(id)sender {
    [self.embeddedView loadURL:self.textView.text completion:nil];
}
点赞