您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

22 行
592 B

  1. // Copyright 2014 Google Inc. All Rights Reserved.
  2. #import <Foundation/Foundation.h>
  3. /// A cache to hold onto objects while Unity is still referencing them.
  4. @interface GADUObjectCache : NSObject
  5. + (instancetype)sharedInstance;
  6. /// References to objects Google Mobile ads objects created from Unity.
  7. @property(nonatomic, strong) NSMutableDictionary *references;
  8. @end
  9. @interface NSObject (GADUOwnershipAdditions)
  10. /// Returns a key used to lookup a Google Mobile Ads object. This method is intended to only be used
  11. /// by Google Mobile Ads objects.
  12. - (NSString *)gadu_referenceKey;
  13. @end