zoukankan      html  css  js  c++  java
  • SDWebImage 的安装(转自官方文档)

    Installation

    There are two ways to use this in your project: copy all the files into your project, or import the project as a static library.

    Add the SDWebImage project to your project

    • Download and unzip the last version of the framework from the download page
    • Right-click on the project navigator and select "Add Files to "Your Project":
    • In the dialog, select SDWebImage.framework:
    • Check the "Copy items into destination group's folder (if needed)" checkbox

    Add dependencies

    • In you application project app’s target settings, find the "Build Phases" section and open the "Link Binary With Libraries" block:
    • Click the "+" button again and select the "ImageIO.framework", this is needed by the progressive download feature:

    Add Linker Flag

    Open the "Build Settings" tab, in the "Linking" section, locate the "Other Linker Flags" setting and add the "-ObjC" flag:

    Other Linker Flags

    Import headers in your source files

    In the source files where you need to use the library, import the header file:

    #import <SDWebImage/UIImageView+WebCache.h>
    

    Build Project

    At this point your workspace should build without error. If you are having problem, post to the Issue and the community can help you solve it.

  • 相关阅读:
    ssm框架配置文件
    接口调用post请求参数在body中
    mysql三种连接方式
    jwt认证登录
    JWT工具类
    token的创建及解析
    IIS目录
    C# 增加多个分部类
    计算机知识
    Kibana 的安装(Windows版本)
  • 原文地址:https://www.cnblogs.com/qc0815/p/3181848.html
Copyright © 2011-2022 走看看