Advertisement
Guest User

Untitled

a guest
Jan 28th, 2014
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public class GADAdSize extends NSObject{
  2.        
  3.     private static final ObjCClass objCClass = ObjCClass.getByType(GADAdSize.class);
  4.  
  5.  
  6.     static {
  7.         ObjCRuntime.bind(GADAdSize.class);
  8.     }
  9.    
  10.     public static GADAdSize getAd() {
  11.        
  12.         return objc_init(objCClass, inits);
  13.        
  14.     }
  15.    
  16.     private static final Selector inits = Selector.register("kGADAdSizeSmartBannerLandscape:");
  17.  
  18.     @Bridge
  19.     private native static GADAdSize objc_init (ObjCClass __self__, Selector __cmd__);
  20.    
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement