Last active
August 29, 2015 14:22
-
-
Save brentvatne/e36babfd46df31ccf107 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (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