Advertisement
Guest User

Untitled

a guest
Jun 13th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. %hook SCClubhouseBaseContentSectionViewController
  2. -(bool)allowAds{
  3.     return TRUE;
  4. }
  5. %end
  6.  
  7. %hook SCClubhouseArticleFeedViewController
  8. -(bool)allowAds{
  9.     return TRUE;
  10. }
  11. %end
  12.  
  13. %hook SCClubhouseArticleOneFeedViewController
  14. -(bool)allowAds{
  15.     return TRUE;
  16. }
  17. %end
  18.  
  19. %hook GADBannerAdViewDelegate
  20. -(bool)adView:(id)arg1 shouldStartLoadWithRequest:(id)arg2 navigationType:(long long)arg3{
  21.     return TRUE;
  22. }
  23. %end
  24.  
  25. %hook GADBannerAdViewDelegate
  26. -(bool)isLoadFinished{
  27.     return TRUE;
  28. }
  29. %end
  30.  
  31. %hook GADBannerAdViewDelegate
  32. -(bool)isLoadDelayed{
  33.     return TRUE;
  34. }
  35. %end
  36.  
  37. %hook SCVideoAdProvider
  38. -(bool)shouldShowAdForContext:(id)arg1{
  39.     return TRUE;
  40. }
  41. %end
  42.  
  43. %ctor{
  44.     %init(SCVideoAdProvider = objc_getClass("ESPN.SCVideoAdProvider"));
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement