mirror of
https://github.com/zhigang1992/RETableViewManager.git
synced 2026-06-17 05:29:59 +08:00
323 lines
16 KiB
XML
323 lines
16 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Tokens version="1.0">
|
|
<File path="Categories/UIButton+WebCache.html">
|
|
|
|
<Token>
|
|
<TokenIdentifier>//apple_ref/occ/cat/UIButton(WebCache)</TokenIdentifier>
|
|
<Abstract type="html">Integrates SDWebImage async downloading and caching of remote images with UIButtonView.</Abstract>
|
|
<DeclaredIn>UIButton+WebCache.h</DeclaredIn>
|
|
|
|
<NodeRef refid="7"/>
|
|
</Token>
|
|
|
|
|
|
<Token>
|
|
<TokenIdentifier>//apple_ref/occ/intfm/UIButton(WebCache)/setImageWithURL:forState:</TokenIdentifier>
|
|
<Abstract type="html">Set the imageView image with an url.</Abstract>
|
|
<DeclaredIn>UIButton+WebCache.h</DeclaredIn>
|
|
|
|
<Declaration>- (void)setImageWithURL:(NSURL *)url forState:(UIControlState)state</Declaration>
|
|
<Parameters>
|
|
<Parameter>
|
|
<Name>url</Name>
|
|
<Abstract type="html">The url for the image.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>state</Name>
|
|
<Abstract type="html">The state that uses the specified title. The values are described in UIControlState.</Abstract>
|
|
</Parameter>
|
|
</Parameters>
|
|
|
|
<Anchor>//api/name/setImageWithURL:forState:</Anchor>
|
|
</Token>
|
|
|
|
<Token>
|
|
<TokenIdentifier>//apple_ref/occ/intfm/UIButton(WebCache)/setImageWithURL:forState:placeholderImage:</TokenIdentifier>
|
|
<Abstract type="html">Set the imageView image with an url and a placeholder.</Abstract>
|
|
<DeclaredIn>UIButton+WebCache.h</DeclaredIn>
|
|
|
|
<Declaration>- (void)setImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder</Declaration>
|
|
<Parameters>
|
|
<Parameter>
|
|
<Name>url</Name>
|
|
<Abstract type="html">The url for the image.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>state</Name>
|
|
<Abstract type="html">The state that uses the specified title. The values are described in UIControlState.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>placeholder</Name>
|
|
<Abstract type="html">The image to be set initially, until the image request finishes.</Abstract>
|
|
</Parameter>
|
|
</Parameters>
|
|
|
|
<Anchor>//api/name/setImageWithURL:forState:placeholderImage:</Anchor>
|
|
</Token>
|
|
|
|
<Token>
|
|
<TokenIdentifier>//apple_ref/occ/intfm/UIButton(WebCache)/setImageWithURL:forState:placeholderImage:options:</TokenIdentifier>
|
|
<Abstract type="html">Set the imageView image with an url, placeholder and custom options.</Abstract>
|
|
<DeclaredIn>UIButton+WebCache.h</DeclaredIn>
|
|
|
|
<Declaration>- (void)setImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options</Declaration>
|
|
<Parameters>
|
|
<Parameter>
|
|
<Name>url</Name>
|
|
<Abstract type="html">The url for the image.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>state</Name>
|
|
<Abstract type="html">The state that uses the specified title. The values are described in UIControlState.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>placeholder</Name>
|
|
<Abstract type="html">The image to be set initially, until the image request finishes.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>options</Name>
|
|
<Abstract type="html">The options to use when downloading the image. @see SDWebImageOptions for the possible values.</Abstract>
|
|
</Parameter>
|
|
</Parameters>
|
|
|
|
<Anchor>//api/name/setImageWithURL:forState:placeholderImage:options:</Anchor>
|
|
</Token>
|
|
|
|
<Token>
|
|
<TokenIdentifier>//apple_ref/occ/intfm/UIButton(WebCache)/setImageWithURL:forState:completed:</TokenIdentifier>
|
|
<Abstract type="html">Set the imageView image with an url.</Abstract>
|
|
<DeclaredIn>UIButton+WebCache.h</DeclaredIn>
|
|
|
|
<Declaration>- (void)setImageWithURL:(NSURL *)url forState:(UIControlState)state completed:(SDWebImageCompletedBlock)completedBlock</Declaration>
|
|
<Parameters>
|
|
<Parameter>
|
|
<Name>url</Name>
|
|
<Abstract type="html">The url for the image.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>state</Name>
|
|
<Abstract type="html">The state that uses the specified title. The values are described in UIControlState.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>completedBlock</Name>
|
|
<Abstract type="html">A block called when operation has been completed. This block as no return value
|
|
and takes the requested UIImage as first parameter. In case of error the image parameter
|
|
is nil and the second parameter may contain an NSError. The third parameter is a Boolean
|
|
indicating if the image was retrived from the local cache of from the network.</Abstract>
|
|
</Parameter>
|
|
</Parameters>
|
|
|
|
<Anchor>//api/name/setImageWithURL:forState:completed:</Anchor>
|
|
</Token>
|
|
|
|
<Token>
|
|
<TokenIdentifier>//apple_ref/occ/intfm/UIButton(WebCache)/setImageWithURL:forState:placeholderImage:completed:</TokenIdentifier>
|
|
<Abstract type="html">Set the imageView image with an url, placeholder.</Abstract>
|
|
<DeclaredIn>UIButton+WebCache.h</DeclaredIn>
|
|
|
|
<Declaration>- (void)setImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder completed:(SDWebImageCompletedBlock)completedBlock</Declaration>
|
|
<Parameters>
|
|
<Parameter>
|
|
<Name>url</Name>
|
|
<Abstract type="html">The url for the image.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>state</Name>
|
|
<Abstract type="html">The state that uses the specified title. The values are described in UIControlState.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>placeholder</Name>
|
|
<Abstract type="html">The image to be set initially, until the image request finishes.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>completedBlock</Name>
|
|
<Abstract type="html">A block called when operation has been completed. This block as no return value
|
|
and takes the requested UIImage as first parameter. In case of error the image parameter
|
|
is nil and the second parameter may contain an NSError. The third parameter is a Boolean
|
|
indicating if the image was retrived from the local cache of from the network.</Abstract>
|
|
</Parameter>
|
|
</Parameters>
|
|
|
|
<Anchor>//api/name/setImageWithURL:forState:placeholderImage:completed:</Anchor>
|
|
</Token>
|
|
|
|
<Token>
|
|
<TokenIdentifier>//apple_ref/occ/intfm/UIButton(WebCache)/setImageWithURL:forState:placeholderImage:options:completed:</TokenIdentifier>
|
|
<Abstract type="html">Set the imageView image with an url, placeholder and custom options.</Abstract>
|
|
<DeclaredIn>UIButton+WebCache.h</DeclaredIn>
|
|
|
|
<Declaration>- (void)setImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options completed:(SDWebImageCompletedBlock)completedBlock</Declaration>
|
|
<Parameters>
|
|
<Parameter>
|
|
<Name>url</Name>
|
|
<Abstract type="html">The url for the image.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>state</Name>
|
|
<Abstract type="html">The state that uses the specified title. The values are described in UIControlState.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>placeholder</Name>
|
|
<Abstract type="html">The image to be set initially, until the image request finishes.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>options</Name>
|
|
<Abstract type="html">The options to use when downloading the image. @see SDWebImageOptions for the possible values.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>completedBlock</Name>
|
|
<Abstract type="html">A block called when operation has been completed. This block as no return value
|
|
and takes the requested UIImage as first parameter. In case of error the image parameter
|
|
is nil and the second parameter may contain an NSError. The third parameter is a Boolean
|
|
indicating if the image was retrived from the local cache of from the network.</Abstract>
|
|
</Parameter>
|
|
</Parameters>
|
|
|
|
<Anchor>//api/name/setImageWithURL:forState:placeholderImage:options:completed:</Anchor>
|
|
</Token>
|
|
|
|
<Token>
|
|
<TokenIdentifier>//apple_ref/occ/intfm/UIButton(WebCache)/setBackgroundImageWithURL:forState:</TokenIdentifier>
|
|
<Abstract type="html">Set the backgroundImageView image with an url.</Abstract>
|
|
<DeclaredIn>UIButton+WebCache.h</DeclaredIn>
|
|
|
|
<Declaration>- (void)setBackgroundImageWithURL:(NSURL *)url forState:(UIControlState)state</Declaration>
|
|
<Parameters>
|
|
<Parameter>
|
|
<Name>url</Name>
|
|
<Abstract type="html">The url for the image.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>state</Name>
|
|
<Abstract type="html">The state that uses the specified title. The values are described in UIControlState.</Abstract>
|
|
</Parameter>
|
|
</Parameters>
|
|
|
|
<Anchor>//api/name/setBackgroundImageWithURL:forState:</Anchor>
|
|
</Token>
|
|
|
|
<Token>
|
|
<TokenIdentifier>//apple_ref/occ/intfm/UIButton(WebCache)/setBackgroundImageWithURL:forState:placeholderImage:</TokenIdentifier>
|
|
<Abstract type="html">Set the backgroundImageView image with an url and a placeholder.</Abstract>
|
|
<DeclaredIn>UIButton+WebCache.h</DeclaredIn>
|
|
|
|
<Declaration>- (void)setBackgroundImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder</Declaration>
|
|
<Parameters>
|
|
<Parameter>
|
|
<Name>url</Name>
|
|
<Abstract type="html">The url for the image.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>state</Name>
|
|
<Abstract type="html">The state that uses the specified title. The values are described in UIControlState.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>placeholder</Name>
|
|
<Abstract type="html">The image to be set initially, until the image request finishes.</Abstract>
|
|
</Parameter>
|
|
</Parameters>
|
|
|
|
<Anchor>//api/name/setBackgroundImageWithURL:forState:placeholderImage:</Anchor>
|
|
</Token>
|
|
|
|
<Token>
|
|
<TokenIdentifier>//apple_ref/occ/intfm/UIButton(WebCache)/setBackgroundImageWithURL:forState:placeholderImage:options:</TokenIdentifier>
|
|
<Abstract type="html">Set the backgroundImageView image with an url, placeholder and custom options.</Abstract>
|
|
<DeclaredIn>UIButton+WebCache.h</DeclaredIn>
|
|
|
|
<Declaration>- (void)setBackgroundImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options</Declaration>
|
|
<Parameters>
|
|
<Parameter>
|
|
<Name>url</Name>
|
|
<Abstract type="html">The url for the image.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>state</Name>
|
|
<Abstract type="html">The state that uses the specified title. The values are described in UIControlState.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>placeholder</Name>
|
|
<Abstract type="html">The image to be set initially, until the image request finishes.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>options</Name>
|
|
<Abstract type="html">The options to use when downloading the image. @see SDWebImageOptions for the possible values.</Abstract>
|
|
</Parameter>
|
|
</Parameters>
|
|
|
|
<Anchor>//api/name/setBackgroundImageWithURL:forState:placeholderImage:options:</Anchor>
|
|
</Token>
|
|
|
|
<Token>
|
|
<TokenIdentifier>//apple_ref/occ/intfm/UIButton(WebCache)/setBackgroundImageWithURL:forState:completed:</TokenIdentifier>
|
|
<Abstract type="html">Set the backgroundImageView image with an url.</Abstract>
|
|
<DeclaredIn>UIButton+WebCache.h</DeclaredIn>
|
|
|
|
<Declaration>- (void)setBackgroundImageWithURL:(NSURL *)url forState:(UIControlState)state completed:(SDWebImageCompletedBlock)completedBlock</Declaration>
|
|
<Parameters>
|
|
<Parameter>
|
|
<Name>url</Name>
|
|
<Abstract type="html">The url for the image.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>state</Name>
|
|
<Abstract type="html">The state that uses the specified title. The values are described in UIControlState.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>success</Name>
|
|
<Abstract type="html">A block to be executed when the image request succeed This block has no return value and takes the retrieved image as argument.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>failure</Name>
|
|
<Abstract type="html">A block object to be executed when the image request failed. This block has no return value and takes the error object describing the network or parsing error that occurred (may be nil).</Abstract>
|
|
</Parameter>
|
|
</Parameters>
|
|
|
|
<Anchor>//api/name/setBackgroundImageWithURL:forState:completed:</Anchor>
|
|
</Token>
|
|
|
|
<Token>
|
|
<TokenIdentifier>//apple_ref/occ/intfm/UIButton(WebCache)/setBackgroundImageWithURL:forState:placeholderImage:completed:</TokenIdentifier>
|
|
<Abstract type="html">Set the backgroundImageView image with an url, placeholder.</Abstract>
|
|
<DeclaredIn>UIButton+WebCache.h</DeclaredIn>
|
|
|
|
<Declaration>- (void)setBackgroundImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder completed:(SDWebImageCompletedBlock)completedBlock</Declaration>
|
|
<Parameters>
|
|
<Parameter>
|
|
<Name>url</Name>
|
|
<Abstract type="html">The url for the image.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>state</Name>
|
|
<Abstract type="html">The state that uses the specified title. The values are described in UIControlState.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>placeholder</Name>
|
|
<Abstract type="html">The image to be set initially, until the image request finishes.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>success</Name>
|
|
<Abstract type="html">A block to be executed when the image request succeed This block has no return value and takes the retrieved image as argument.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>failure</Name>
|
|
<Abstract type="html">A block object to be executed when the image request failed. This block has no return value and takes the error object describing the network or parsing error that occurred (may be nil).</Abstract>
|
|
</Parameter>
|
|
</Parameters>
|
|
|
|
<Anchor>//api/name/setBackgroundImageWithURL:forState:placeholderImage:completed:</Anchor>
|
|
</Token>
|
|
|
|
<Token>
|
|
<TokenIdentifier>//apple_ref/occ/intfm/UIButton(WebCache)/setBackgroundImageWithURL:forState:placeholderImage:options:completed:</TokenIdentifier>
|
|
<Abstract type="html">Set the backgroundImageView image with an url, placeholder and custom options.</Abstract>
|
|
<DeclaredIn>UIButton+WebCache.h</DeclaredIn>
|
|
|
|
<Declaration>- (void)setBackgroundImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options completed:(SDWebImageCompletedBlock)completedBlock</Declaration>
|
|
<Parameters>
|
|
<Parameter>
|
|
<Name>url</Name>
|
|
<Abstract type="html">The url for the image.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>placeholder</Name>
|
|
<Abstract type="html">The image to be set initially, until the image request finishes.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>options</Name>
|
|
<Abstract type="html">The options to use when downloading the image. @see SDWebImageOptions for the possible values.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>success</Name>
|
|
<Abstract type="html">A block to be executed when the image request succeed This block has no return value and takes the retrieved image as argument.</Abstract>
|
|
</Parameter><Parameter>
|
|
<Name>failure</Name>
|
|
<Abstract type="html">A block object to be executed when the image request failed. This block has no return value and takes the error object describing the network or parsing error that occurred (may be nil).</Abstract>
|
|
</Parameter>
|
|
</Parameters>
|
|
|
|
<Anchor>//api/name/setBackgroundImageWithURL:forState:placeholderImage:options:completed:</Anchor>
|
|
</Token>
|
|
|
|
<Token>
|
|
<TokenIdentifier>//apple_ref/occ/intfm/UIButton(WebCache)/cancelCurrentImageLoad</TokenIdentifier>
|
|
<Abstract type="html">Cancel the current download</Abstract>
|
|
<DeclaredIn>UIButton+WebCache.h</DeclaredIn>
|
|
|
|
<Declaration>- (void)cancelCurrentImageLoad</Declaration>
|
|
|
|
|
|
<Anchor>//api/name/cancelCurrentImageLoad</Anchor>
|
|
</Token>
|
|
|
|
</File>
|
|
</Tokens> |