• Stars
    star
    183
  • Rank 210,154 (Top 5 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created over 9 years ago
  • Updated over 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

一个简单易用的下载助手。基于AFN,实现断点续传,采取Block方式回调下载进度、文件大小、下载是否完成等。

LCDownloadManager

Travis CocoaPods CocoaPods CocoaPods LeoDev

一个简单易用的的下载助手。依赖于 AFN,实现断点续传,采取 Block 回调下载进度、文件大小、下载是否完成等。

In me the tiger sniffs the rose.

心有猛虎,细嗅蔷薇。

致谢 AFNetworking

基于 AFNetworking 2.x

⚠️ 由于 iOS9 和 AFN 的变动,以及某些方面的考虑不周,该库将会抽空重写,不建议继续集成到公司项目,请慎用!

前言 Foreword

一个用来处理下载的库,基于 AFN,实现了好几个东西,时间有限暂不一一说明,具体看代码。

代码 Code

  • 导入方法:

    • 方法一:CocoaPods 导入:pod 'LCDownloadManager'
    • 方法二:把 LCDownloadManager 文件夹 (在 Demo 中) 拖到你的项目中。
  • 在相应位置导入头文件: #import "LCDownloadManager.h"

  • 调用下面的方法即可:

    // 当前下载任务
    AFHTTPRequestOperation *operation1 = nil;
    
    // 下载(提供了类方法和实例方法,根据使用习惯调用)
    operation1 = [LCDownloadManager downloadFileWithURLString:@"http://mw2.dwstatic.com/2/8/1528/133366-99-1436362095.mp4" cachePath:@"demo1.mp4" progress:^(CGFloat progress, CGFloat totalMBRead, CGFloat totalMBExpectedToRead) {
    
        // totalMBRead 和 totalMBExpectedToRead 单位是MB
        NSLog(@"Task1 -> progress: %.2f -> download: %fMB -> all: %fMB", progress, totalMBRead, totalMBExpectedToRead);
    
    } success:^(AFHTTPRequestOperation *operation, id responseObject) {
    
        NSLog(@"Task1 -> Download finish");
    
    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
    
        if (error.code == -999) NSLog(@"Task1 -> Maybe you pause download.");
    
        NSLog(@"Task1 -> %@", error);
    }];
    
    // 暂停(提供了类方法和实例方法,根据使用习惯调用)
    [LCDownloadManager pauseWithOperation:operation1];
  • iOS9 HTTP 不能正常使用的解决办法 (By isteven)

    1. Info.plist 中添加 NSAppTransportSecurity,类型 Dictionary
    2. NSAppTransportSecurity 下添加 NSAllowsArbitraryLoads,类型 Boolean,值设为 YES

更新日志 Update Logs

V 1.0.3 (2016.04.05)

  • 更新 CocoaPods 源地址。

V 1.0.1 (2015.11.10)

  • 添加对 CocoaPods 的支持:pod 'LCDownloadManager'

  • Demo 中添加演示如何防止用户重复点击下载,后续抽时间在库中实现。

V 1.0.0 (2015.07.10)

  • 修复一个重要 BUG。这个 BUG 导致多任务下载时,不能正常暂停对应任务。

  • 提供类方法和实例方法,根据使用习惯调用。

联系 Support

授权 License

本项目采用 MIT license 开源,你可以利用采用该协议的代码做任何事情,只需要继续继承 MIT 协议即可。

More Repositories

1

LCActionSheet

一款简约而不失强大的 ActionSheet,微博、微信和 QQ 都采用了极其类似的样式,完全支持 Swift。
Objective-C
821
star
2

LCTabBarController

A amazing and highly customized tabBarController! You could almost customize 100% properties with LCTabBarController!
Objective-C
385
star
3

LCNavigationController

除 UINavigationController 外最流行的 NavigationController!
Objective-C
226
star
4

LCBannerView

A very popular and highly customized banner view! Infinite loop support!
Objective-C
159
star
5

LCNewFeature

几行代码快速集成新特性界面!
Objective-C
108
star
6

LCProgressHUD

一个超简单的活动指示器。适配横屏。
Objective-C
102
star
7

XXWB

当初学习 iOS 开发时写的小小微博,高仿新浪微博首页!仅供学习哈!请阅读下方必读!!!!
Objective-C
59
star
8

LCCoolHUD

一款酷酷的 HUD。
Objective-C
28
star
9

ReusableProtocol

A helpful and pure Swift implemented library for registering and reusing cells or views in the table view and collection view.
Swift
27
star
10

LCPaintView

🖌 Paint view for iOS.
Objective-C
20
star
11

Xia

🌟 Naughty flexible alert view above the navigation bar.
Swift
19
star
12

LCBlur

Quick way to add blur effect ~
Objective-C
18
star
13

ShakeDemo

摇一摇Demo
Objective-C
17
star
14

ApplePayDemo

 Pay Demo with Swift.
Swift
17
star
15

LCLoadingHUD

彩虹加载指示器。
Objective-C
16
star
16

WeChat

基于XMPP模仿微信App进行IM(即时聊天)开发,并适配iPad、iOS7。(暂停开发,有空再讲……)
Objective-C
14
star
17

SearchBarDemo

Objective-C
13
star
18

LCTipView

An individuality tip view.
Objective-C
11
star
19

LCUtils

个人在开发中使用的工具类。
Objective-C
10
star
20

Grids

⚠️ UIStackView IS A BETTER SOLUTION. 🏁 Grids layout, making views equidistant. Base on SnapKit.
Swift
7
star
21

Da

🌟 Naughty flexible alert view. Like QQ's.
Swift
5
star
22

LCAlertView

Using UIAlertView with Block!
Objective-C
3
star
23

FMDBDemo

A demo for FMDB.
Objective-C
3
star
24

DaXia

🍰 Naughty flexible alert view :) Contains Da and Xia.
Ruby
3
star
25

WebVC

UIWebView + 自定义 Request 的 Header 中添加键值对 KeyValues
Objective-C
1
star
26

UIAlertViewDemo

How to implement the UIAlertView of the system?
Objective-C
1
star
27

FileShareDemo

Demo for share files with iTunes.
Swift
1
star
28

LEONetworkKit

LEONetworkKit is a part of LEOKit. Have fun!
Objective-C
1
star
29

XcodeConfigs

Inspiration from: https://github.com/johnil/xcode_configs
1
star
30

LCCalendarView

For LanMeng Tec.
Objective-C
1
star
31

LCWebViewController

一个带进度条、带工具条、可高度自定义的浏览器!
Objective-C
1
star