RichieAdsSlotListListener
Objective-C
@protocol RichieAdsSlotListListener <NSObject>
-(void) slotAdDidProgressLoadingWithIdentifier:(NSString *)adIdentifier
downloadedBytes:(long long)downloadedBytes
expectedBytes:(long long)expectedBytes;
-(void) slotAdDidFinishLoadingWithIdentifier:(NSString *)adIdentifier success:(BOOL)success;
-(void) slotListAdLoadingDidFinish;
-(void) slotListAdsDidChange;
@end
Swift
protocol RichieAdsSlotListListener : NSObjectProtocol
Undocumented
-
Undocumented
Declaration
Objective-C
-(void) slotAdDidProgressLoadingWithIdentifier:(NSString *)adIdentifier downloadedBytes:(long long)downloadedBytes expectedBytes:(long long)expectedBytes;Swift
func slotAdDidProgressLoading(withIdentifier adIdentifier: String!, downloadedBytes: Int64, expectedBytes: Int64) -
Undocumented
Declaration
Objective-C
-(void) slotAdDidFinishLoadingWithIdentifier:(NSString *)adIdentifier success:(BOOL)success;Swift
func slotAdDidFinishLoading(withIdentifier adIdentifier: String!, success: Bool) -
Undocumented
Declaration
Objective-C
-(void) slotListAdLoadingDidFinish;Swift
func slotListAdLoadingDidFinish() -
Undocumented
Declaration
Objective-C
-(void) slotListAdsDidChange;Swift
func slotListAdsDidChange()