Skip to content

Instantly share code, notes, and snippets.

@brentvatne
Last active August 29, 2015 14:22
Show Gist options
  • Save brentvatne/e36babfd46df31ccf107 to your computer and use it in GitHub Desktop.
Save brentvatne/e36babfd46df31ccf107 to your computer and use it in GitHub Desktop.
- (void)setHtml:(NSString *)html
{
_html = html;
[self applyHtmlAndBaseUrl];
}
- (void)setBaseUrl:(NSString *)baseUrl
{
_baseUrl = baseUrl;
[self applyHtmlAndBaseUrl];
}
- (void)applyHtmlAndBaseUrl
{
if (_baseUrl != nil && _html != nil) {
// set them on the webview
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment