Skip to content

Instantly share code, notes, and snippets.

View dwsolberg's full-sized avatar

David Solberg dwsolberg

  • Minneapolis, MN
View GitHub Profile
[
{
"action": {
"type": "block"
},
"trigger": {
"url-filter": ".*",
"resource-type": ["script"],
"load-type": ["third-party"],
"if-domain": ["imore.com"]
- (UIImage *)debugQuickLookObject
{
UIGraphicsBeginImageContextWithOptions(self.view.layer.bounds.size, NO, 0);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}